mirror of
https://github.com/google/nomulus.git
synced 2025-05-01 04:27:51 +02:00
We want to be safer and more explicit about the authentication needed by the many actions that exist. As such, we make the 'auth' parameter required in @Action (so it's always clear who can run a specific action) and we replace the @Auth with an enum so that only pre-approved configurations that are aptly named and documented can be used. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=162210306
26 lines
715 B
Text
26 lines
715 B
Text
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
java_library(
|
|
name = "sheet",
|
|
srcs = glob(["*.java"]),
|
|
deps = [
|
|
"//java/google/registry/config",
|
|
"//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_api_client",
|
|
"@com_google_appengine_api_1_0_sdk",
|
|
"@com_google_code_findbugs_jsr305",
|
|
"@com_google_dagger",
|
|
"@com_google_gdata_core",
|
|
"@com_google_guava",
|
|
"@javax_servlet_api",
|
|
"@joda_time",
|
|
],
|
|
)
|