mirror of
https://github.com/google/nomulus.git
synced 2025-06-23 21:00:50 +02:00
This removes the following unnecessary imports: //third_party/java_src/gtld/java/google/registry/bigquery //third_party/java_src/gtld/java/google/registry/config //third_party/java_src/gtld/java/google/registry/cron //third_party/java_src/gtld/java/google/registry/dns //third_party/java_src/gtld/java/google/registry/gcs //third_party/java_src/gtld/java/google/registry/mapreduce //third_party/java_src/gtld/java/google/registry/model //third_party/java_src/gtld/java/google/registry/module/backend //third_party/java_src/gtld/java/google/registry/module/frontend //third_party/java_src/gtld/java/google/registry/module/pubapi //third_party/java_src/gtld/java/google/registry/module/tools //third_party/java_src/gtld/java/google/registry/request //third_party/java_src/gtld/java/google/registry/security //third_party/java_src/gtld/java/google/registry/ui/soy/registrar:soy_java_wrappers //third_party/java_src/gtld/java/google/registry/util //third_party/java_src/gtld/java/google/registry/xjc //third_party/java_src/gtld/javatests/google/registry/model //third_party/java_src/gtld/javatests/google/registry/testing //third_party/java_src/gtld/javatests/google/registry/testing/mapreduce The exact command run to generate this CL was: build_cleaner '//third_party/java_src/gtld/...' -c '' --dep_restrictions='//third_party/java_src/gtld/java/google/registry/bigquery,//third_party/java_src/gtld/java/google/registry/config,//third_party/java_src/gtld/java/google/registry/cron,//third_party/java_src/gtld/java/google/registry/dns,//third_party/java_src/gtld/java/google/registry/gcs,//third_party/java_src/gtld/java/google/registry/mapreduce,//third_party/java_src/gtld/java/google/registry/model,//third_party/java_src/gtld/java/google/registry/module/backend,//third_party/java_src/gtld/java/google/registry/module/frontend,//third_party/java_src/gtld/java/google/registry/module/pubapi,//third_party/java_src/gtld/java/google/registry/module/tools,//third_party/java_src/gtld/java/google/registry/request,//third_party/java_src/gtld/java/google/registry/security,//third_party/java_src/gtld/java/google/registry/ui/soy/registrar:soy_java_wrappers,//third_party/java_src/gtld/java/google/registry/util,//third_party/java_src/gtld/java/google/registry/xjc,//third_party/java_src/gtld/javatests/google/registry/model,//third_party/java_src/gtld/javatests/google/registry/testing,//third_party/java_src/gtld/javatests/google/registry/testing/mapreduce' ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=202652421
62 lines
2 KiB
Text
62 lines
2 KiB
Text
package(
|
|
default_testonly = 1,
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
java_library(
|
|
name = "testing",
|
|
srcs = glob(
|
|
["*.java"],
|
|
exclude = [
|
|
"FakeProxyConnectionMetadataProvider.java",
|
|
"FakeQuotaServerClient.java",
|
|
],
|
|
),
|
|
resources = [
|
|
"logging.properties",
|
|
"//java/google/registry:env/common/default/WEB-INF/datastore-indexes.xml",
|
|
"//java/google/registry:env/common/default/WEB-INF/queue.xml",
|
|
] + glob(["*.csv"]) + glob(["testdata/*"]),
|
|
exports = ["//third_party/junit"],
|
|
deps = [
|
|
"//java/google/registry/config",
|
|
"//java/google/registry/dns:constants",
|
|
"//java/google/registry/dns/writer",
|
|
"//java/google/registry/flows",
|
|
"//java/google/registry/keyring/api",
|
|
"//java/google/registry/model",
|
|
"//java/google/registry/monitoring/whitebox",
|
|
"//java/google/registry/pricing",
|
|
"//java/google/registry/request",
|
|
"//java/google/registry/request/lock",
|
|
"//java/google/registry/tmch",
|
|
"//java/google/registry/util",
|
|
"//java/google/registry/xml",
|
|
"//third_party/objectify:objectify-v4_1",
|
|
"@com_google_appengine_api_1_0_sdk",
|
|
"@com_google_appengine_api_stubs",
|
|
"@com_google_appengine_testing",
|
|
"@com_google_appengine_tools_appengine_gcs_client",
|
|
"@com_google_appengine_tools_sdk",
|
|
"@com_google_auto_value",
|
|
"@com_google_code_findbugs_jsr305",
|
|
"@com_google_dagger",
|
|
"@com_google_flogger",
|
|
"@com_google_flogger_system_backend",
|
|
"@com_google_guava",
|
|
"@com_google_guava_testlib",
|
|
"@com_google_truth",
|
|
"@com_google_truth_extensions_truth_java8_extension",
|
|
"@javax_inject",
|
|
"@javax_servlet_api",
|
|
"@joda_time",
|
|
"@junit",
|
|
"@org_bouncycastle_bcpg_jdk15on",
|
|
"@org_bouncycastle_bcpkix_jdk15on",
|
|
"@org_joda_money",
|
|
"@org_json",
|
|
"@org_mockito_all",
|
|
],
|
|
)
|