Update Nomulus to build with bazel 0.16.0

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=208097351
This commit is contained in:
jianglai
2018-08-10 13:46:48 -04:00
parent 33ee7de457
commit 32ed197103
12 changed files with 832 additions and 42 deletions
+9 -1
View File
@@ -4,5 +4,13 @@ licenses(["reciprocal"]) # CDDL 1.1 (also dual-licensed under GPL v2)
java_library(
name = "jaxb",
exports = ["//third_party/jaxb/v2_2_11"],
exports = ["//third_party/jaxb/v2_3_0"],
)
java_binary(
name = "jaxb-xjc",
main_class = "com.sun.tools.xjc.XJCFacade",
runtime_deps = [
":jaxb",
],
)
@@ -8,7 +8,7 @@ package(default_visibility = ["//visibility:public"])
licenses(["reciprocal"]) # CDDL 1.1 (also dual-licensed under GPL v2)
java_library(
name = "v2_2_11",
name = "v2_3_0",
exports = [
"@com_sun_xml_bind_jaxb_core",
"@com_sun_xml_bind_jaxb_impl",
@@ -16,4 +16,7 @@ java_library(
"@com_sun_xml_bind_jaxb_xjc",
"@javax_xml_bind_jaxb_api",
],
runtime_deps = [
"//third_party/activation",
],
)