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"], )