mirror of
https://github.com/google/nomulus.git
synced 2025-05-01 20:47:52 +02:00
24 lines
545 B
Text
24 lines
545 B
Text
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
filegroup(
|
|
name = "xml_schema_files",
|
|
srcs = glob(["xsd/*.xsd"]),
|
|
)
|
|
|
|
java_library(
|
|
name = "xml",
|
|
srcs = glob(["*.java"]),
|
|
resources = [":xml_schema_files"],
|
|
deps = [
|
|
"//java/com/google/common/base",
|
|
"//java/com/google/common/collect",
|
|
"//java/com/google/common/io",
|
|
"//third_party/java/joda_time",
|
|
"//third_party/java/jsr305_annotations",
|
|
"//third_party/java/re2j",
|
|
],
|
|
)
|