mirror of
https://github.com/google/nomulus
synced 2026-01-08 15:21:46 +00:00
This change renames directories in preparation for the great package rename. The repository is now in a broken state because the code itself hasn't been updated. However this should ensure that git correctly preserves history for each file.
19 lines
589 B
Python
19 lines
589 B
Python
package(default_visibility = ["//java/com/google/domain/registry:registry_project"])
|
|
|
|
|
|
java_library(
|
|
name = "braintree",
|
|
srcs = glob(["*.java"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//java/com/google/common/base",
|
|
"//java/com/google/domain/registry/config",
|
|
"//java/com/google/domain/registry/keyring/api",
|
|
"//java/com/google/domain/registry/model",
|
|
"//third_party/java/braintree",
|
|
"//third_party/java/dagger",
|
|
"//third_party/java/jsr305_annotations",
|
|
"//third_party/java/jsr330_inject",
|
|
],
|
|
)
|