Import code from internal repository to git

This commit is contained in:
Justine Tunney 2016-03-01 17:18:14 -05:00
commit 0ef0c933d2
2490 changed files with 281594 additions and 0 deletions

19
third_party/java/jaxb/BUILD vendored Normal file
View file

@ -0,0 +1,19 @@
package(default_visibility = ["//visibility:public"])
licenses(["reciprocal"]) # CDDL 1.1 (also dual-licensed under GPL v2)
java_library(
name = "jaxb",
exports = ["@jaxb_api//jar"],
)
java_binary(
name = "jaxb-xjc",
main_class = "com.sun.tools.xjc.XJCFacade",
runtime_deps = [
"@jaxb_api//jar",
"@jaxb_core//jar",
"@jaxb_impl//jar",
"@jaxb_xjc//jar",
],
)