mirror of
https://github.com/google/nomulus
synced 2026-09-03 22:57:09 +00:00
Add {java,tests}/google/registry/export/datastore to open source.
This is part of the migration to Datastore Managed Import/Export
for backup.
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=221800709
22 lines
609 B
Python
22 lines
609 B
Python
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
java_library(
|
|
name = "datastore",
|
|
srcs = glob(["*.java"]),
|
|
deps = [
|
|
"//java/google/registry/config",
|
|
"//third_party/java/google_api_java_client:services_json",
|
|
"//third_party/java/google_http_java_client:http",
|
|
"//third_party/java/google_http_java_client:json",
|
|
"//third_party/java/google_http_java_client:util",
|
|
"@com_google_api_client",
|
|
"@com_google_dagger",
|
|
"@com_google_guava",
|
|
"@com_google_http_client_jackson2",
|
|
],
|
|
)
|