mirror of
https://github.com/google/nomulus.git
synced 2025-07-22 02:36:03 +02:00
As the first step in credential consolidation, we replace injection of application default credential in for KMS and Drive. Tests: - for Drive, tested with exportDomainLists and exportReservedTerms. - For KMS, used CLI commands (get_keyring_secret and update_kms_keyring) to change and restore secret for one key. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=211819859
26 lines
661 B
Text
26 lines
661 B
Text
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
java_library(
|
|
name = "config",
|
|
srcs = glob(["*.java"]),
|
|
resources = glob(["files/*.yaml"]),
|
|
deps = [
|
|
"//java/google/registry/util",
|
|
"@com_google_api_client",
|
|
"@com_google_appengine_api_1_0_sdk",
|
|
"@com_google_auto_value",
|
|
"@com_google_code_findbugs_jsr305",
|
|
"@com_google_dagger",
|
|
"@com_google_flogger",
|
|
"@com_google_flogger_system_backend",
|
|
"@com_google_guava",
|
|
"@javax_inject",
|
|
"@joda_time",
|
|
"@org_joda_money",
|
|
"@org_yaml_snakeyaml",
|
|
],
|
|
)
|