mirror of
https://github.com/google/nomulus.git
synced 2025-07-20 17:56:08 +02:00
This change renames directories in preparation for the great package rename. The repository is now in a broken state because the code itself hasn't been updated. However this should ensure that git correctly preserves history for each file.
27 lines
974 B
Text
27 lines
974 B
Text
package(
|
|
default_visibility = ["//java/com/google/domain/registry:registry_project"],
|
|
)
|
|
|
|
|
|
java_library(
|
|
name = "mapreduce",
|
|
srcs = glob(["*.java"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//java/com/google/common/annotations",
|
|
"//java/com/google/common/base",
|
|
"//java/com/google/common/collect",
|
|
"//java/com/google/domain/registry/mapreduce/inputs",
|
|
"//java/com/google/domain/registry/model",
|
|
"//java/com/google/domain/registry/request",
|
|
"//java/com/google/domain/registry/util",
|
|
"//third_party/java/appengine:appengine-api",
|
|
"//third_party/java/appengine_mapreduce2:appengine_mapreduce",
|
|
"//third_party/java/appengine_pipeline",
|
|
"//third_party/java/dagger",
|
|
"//third_party/java/joda_time",
|
|
"//third_party/java/jsr330_inject",
|
|
"//third_party/java/objectify:objectify-v4_1",
|
|
"//third_party/java/servlet/servlet_api",
|
|
],
|
|
)
|