mirror of
https://github.com/google/nomulus.git
synced 2025-06-20 03:10:47 +02:00
Move the "restoreCommitLogs" command from the backend module to the tools module so it's easier to access with nomulus. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156768389
27 lines
786 B
Text
27 lines
786 B
Text
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
java_library(
|
|
name = "backup",
|
|
srcs = glob(["*.java"]),
|
|
deps = [
|
|
"//java/google/registry/config",
|
|
"//java/google/registry/cron",
|
|
"//java/google/registry/model",
|
|
"//java/google/registry/request",
|
|
"//java/google/registry/request/auth",
|
|
"//java/google/registry/util",
|
|
"//third_party/java/objectify:objectify-v4_1",
|
|
"@com_google_appengine_api_1_0_sdk",
|
|
"@com_google_appengine_tools_appengine_gcs_client",
|
|
"@com_google_code_findbugs_jsr305",
|
|
"@com_google_dagger",
|
|
"@com_google_guava",
|
|
"@com_googlecode_json_simple",
|
|
"@javax_servlet_api",
|
|
"@joda_time",
|
|
],
|
|
)
|