mirror of
https://github.com/google/nomulus
synced 2026-01-09 23:47:49 +00:00
This moves the default yearMonth logic into a common ReportingModule, rather than the coarse-scoped BackendModule, which may not want the default parameter extraction logic, as well as moving the 'yearMonth' parameter constant to the common package it's used in. This also provides a basis for future consolidation of the ReportingEmailUtils and BillingEmailUtils classes, which have modest overlap. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=183130311
19 lines
394 B
Python
19 lines
394 B
Python
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
java_library(
|
|
name = "reporting",
|
|
srcs = glob(["*.java"]),
|
|
deps = [
|
|
"//java/google/registry/request",
|
|
"//java/google/registry/util",
|
|
"@com_google_code_findbugs_jsr305",
|
|
"@com_google_dagger",
|
|
"@javax_servlet_api",
|
|
"@joda_time",
|
|
],
|
|
)
|