mirror of
https://github.com/google/nomulus
synced 2026-01-09 23:47:49 +00:00
This adds the terminal step of the Spec11 pipeline- processing the output of the Beam pipeline to send an e-mail to each registrar informing them of identified 'bad urls.' This also factors out methods common between invoicing (which uses similar beam pipeline tools) and spec11 to the common superpackage ReportingModule + ReportingUtils classes. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=210932496
24 lines
601 B
Python
24 lines
601 B
Python
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
java_library(
|
|
name = "reporting",
|
|
srcs = glob(["*.java"]),
|
|
deps = [
|
|
"//java/google/registry/config",
|
|
"//java/google/registry/request",
|
|
"//java/google/registry/util",
|
|
"@com_google_api_client_appengine",
|
|
"@com_google_apis_google_api_services_dataflow",
|
|
"@com_google_appengine_api_1_0_sdk",
|
|
"@com_google_dagger",
|
|
"@com_google_guava",
|
|
"@com_google_http_client",
|
|
"@javax_servlet_api",
|
|
"@joda_time",
|
|
],
|
|
)
|