Add monitoring/metrics/contrib package to Nomulus release

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=150007228
This commit is contained in:
mcilwain 2017-03-13 16:27:02 -07:00 committed by Ben McIlwain
parent c426a80563
commit 3a13a4d6b6
7 changed files with 713 additions and 0 deletions

View file

@ -0,0 +1,17 @@
package(
default_testonly = 1,
default_visibility = ["//visibility:public"],
)
licenses(["notice"]) # Apache 2.0
java_library(
name = "contrib",
srcs = glob(["*.java"]),
deps = [
"//java/google/registry/monitoring/metrics",
"@com_google_code_findbugs_jsr305",
"@com_google_guava",
"@com_google_truth",
],
)