mirror of
https://github.com/google/nomulus
synced 2026-01-05 04:56:03 +00:00
This is one of several CLs in a sequence for allowing per-TLD DNS implementations. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=129445641
29 lines
840 B
Python
29 lines
840 B
Python
package(
|
|
default_visibility = ["//java/google/registry:registry_project"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
|
|
java_library(
|
|
name = "dnsupdate",
|
|
srcs = glob(["*.java"]),
|
|
deps = [
|
|
"//java/com/google/common/annotations",
|
|
"//java/com/google/common/base",
|
|
"//java/com/google/common/collect",
|
|
"//java/com/google/common/io",
|
|
"//java/com/google/common/net",
|
|
"//java/com/google/common/primitives",
|
|
"//third_party/java/dagger",
|
|
"//third_party/java/dnsjava",
|
|
"//third_party/java/joda_time",
|
|
"//third_party/java/jsr305_annotations",
|
|
"//third_party/java/jsr330_inject",
|
|
"//java/google/registry/config",
|
|
"//java/google/registry/dns/writer",
|
|
"//java/google/registry/model",
|
|
"//java/google/registry/util",
|
|
],
|
|
)
|