mirror of
https://github.com/google/nomulus.git
synced 2025-06-19 10:50:49 +02:00
As part of this change, built out a KeyValueMapParameter from the existing TransitionListParameter in order to enable other Map types in commands (two of which are used in CreateLrpTokensCommand). ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=137476564
33 lines
874 B
Text
33 lines
874 B
Text
package(
|
|
default_testonly = 1,
|
|
default_visibility = ["//java/google/registry:registry_project"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
|
|
java_library(
|
|
name = "params",
|
|
srcs = glob(["*.java"]),
|
|
deps = [
|
|
"//java/com/google/common/base",
|
|
"//java/com/google/common/collect",
|
|
"//third_party/java/hamcrest",
|
|
"//third_party/java/jcommander",
|
|
"//third_party/java/joda_money",
|
|
"//third_party/java/joda_time",
|
|
"//third_party/java/junit",
|
|
"//third_party/java/truth",
|
|
"//java/google/registry/model",
|
|
"//java/google/registry/tools/params",
|
|
"//javatests/google/registry/testing",
|
|
],
|
|
)
|
|
|
|
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
|
|
|
|
GenTestRules(
|
|
name = "GeneratedTestRules",
|
|
test_files = glob(["*Test.java"]),
|
|
deps = [":params"],
|
|
)
|