mirror of
https://github.com/google/nomulus.git
synced 2025-07-12 14:08:18 +02:00
This implements the basic framework that allows global YAML configuration, per-environment custom configuration, and unit- test-specific configuration. TESTED=I deployed to alpha, ran some EPP commands through the nomulus tool, and verified no errors. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=145422680
22 lines
519 B
Text
22 lines
519 B
Text
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
java_library(
|
|
name = "config",
|
|
srcs = glob(["*.java"]),
|
|
resources = glob(["*.yaml"]),
|
|
deps = [
|
|
"//java/google/registry/util",
|
|
"@com_google_appengine_api_1_0_sdk",
|
|
"@com_google_auto_value",
|
|
"@com_google_code_findbugs_jsr305",
|
|
"@com_google_dagger",
|
|
"@com_google_guava",
|
|
"@joda_time",
|
|
"@org_joda_money",
|
|
"@org_yaml_snakeyaml",
|
|
],
|
|
)
|