mirror of
https://github.com/google/nomulus.git
synced 2025-08-05 09:21:49 +02: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
28 lines
840 B
Text
28 lines
840 B
Text
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",
|
|
],
|
|
)
|