mirror of
https://github.com/google/nomulus.git
synced 2025-05-03 21:47:51 +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
52 lines
1.6 KiB
Text
52 lines
1.6 KiB
Text
package(
|
|
default_testonly = 1,
|
|
default_visibility = ["//java/google/registry:registry_project"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
load("//java/com/google/testing/builddefs:GenTestRules.bzl", "GenTestRules")
|
|
|
|
java_library(
|
|
name = "export",
|
|
srcs = glob(["*.java"]),
|
|
resources = [
|
|
"backup_kinds.txt",
|
|
"reporting_kinds.txt",
|
|
],
|
|
deps = [
|
|
"//java/google/registry/bigquery",
|
|
"//java/google/registry/export",
|
|
"//java/google/registry/groups",
|
|
"//java/google/registry/model",
|
|
"//java/google/registry/request",
|
|
"//java/google/registry/storage/drive",
|
|
"//java/google/registry/util",
|
|
"//javatests/google/registry/testing",
|
|
"//javatests/google/registry/testing/mapreduce",
|
|
"//third_party/objectify:objectify-v4_1",
|
|
"@com_google_apis_google_api_services_bigquery",
|
|
"@com_google_apis_google_api_services_drive",
|
|
"@com_google_appengine_api_1_0_sdk",
|
|
"@com_google_appengine_api_stubs",
|
|
"@com_google_appengine_tools_appengine_gcs_client",
|
|
"@com_google_dagger",
|
|
"@com_google_flogger",
|
|
"@com_google_flogger_system_backend",
|
|
"@com_google_guava",
|
|
"@com_google_http_client",
|
|
"@com_google_re2j",
|
|
"@com_google_truth",
|
|
"@com_google_truth_extensions_truth_java8_extension",
|
|
"@javax_servlet_api",
|
|
"@joda_time",
|
|
"@junit",
|
|
"@org_mockito_all",
|
|
],
|
|
)
|
|
|
|
GenTestRules(
|
|
name = "GeneratedTestRules",
|
|
test_files = glob(["*Test.java"]),
|
|
deps = [":export"],
|
|
)
|