mirror of
https://github.com/google/nomulus.git
synced 2025-05-02 04:57:51 +02:00
The dark lord Gosling designed the Java package naming system so that ownership flows from the DNS system. Since we own the domain name registry.google, it seems only appropriate that we should use google.registry as our package name.
28 lines
942 B
Text
28 lines
942 B
Text
package(default_visibility = ["//java/google/registry:registry_project"])
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
|
|
java_library(
|
|
name = "sheet",
|
|
srcs = glob(["*.java"]),
|
|
deps = [
|
|
"//java/com/google/api/client/googleapis/auth/oauth2",
|
|
"//java/com/google/common/base",
|
|
"//java/com/google/common/collect",
|
|
"//java/com/google/common/io",
|
|
"//java/com/google/common/net",
|
|
"//java/com/google/gdata",
|
|
"//java/com/google/gdata:spreadsheet",
|
|
"//third_party/java/appengine:appengine-api",
|
|
"//third_party/java/dagger",
|
|
"//third_party/java/joda_time",
|
|
"//third_party/java/jsr305_annotations",
|
|
"//third_party/java/jsr330_inject",
|
|
"//third_party/java/servlet/servlet_api",
|
|
"//java/google/registry/config",
|
|
"//java/google/registry/model",
|
|
"//java/google/registry/request",
|
|
"//java/google/registry/util",
|
|
],
|
|
)
|