mirror of
https://github.com/google/nomulus.git
synced 2025-05-02 13:07:50 +02:00
67 lines
2.1 KiB
Text
67 lines
2.1 KiB
Text
package(
|
|
default_visibility = ["//java/google/registry:registry_project"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
java_binary(
|
|
name = "annotation_processors_ide",
|
|
create_executable = False,
|
|
runtime_deps = [
|
|
"@auto_factory//jar",
|
|
"@auto_service//jar",
|
|
"@auto_value//jar",
|
|
"@javawriter//jar",
|
|
"//third_party/java/dagger:dagger-compiler",
|
|
],
|
|
)
|
|
|
|
java_binary(
|
|
name = "registry_deps",
|
|
create_executable = 0,
|
|
runtime_deps = [
|
|
"//java/com/google/common/testing",
|
|
"//java/google/registry/module/backend",
|
|
"//java/google/registry/module/frontend",
|
|
"//java/google/registry/module/tools",
|
|
"//java/google/registry/tools",
|
|
"//third_party/java/apache_sshd",
|
|
"//third_party/java/appengine:appengine-api-link",
|
|
"//third_party/java/appengine:appengine-integration-testing",
|
|
"//third_party/java/appengine:appengine-remote-api-link",
|
|
"//third_party/java/appengine:appengine-stubs",
|
|
"//third_party/java/appengine:appengine-testing",
|
|
"//third_party/java/ftpserver",
|
|
"//third_party/java/hamcrest",
|
|
"//third_party/java/jetty/v6_1_22",
|
|
"//third_party/java/junit",
|
|
"//third_party/java/mockito",
|
|
"//third_party/java/truth",
|
|
],
|
|
)
|
|
|
|
# This rule creates a copy of the registry_deps_deploy.jar with all of the
|
|
# domain-registry code removed. This is to avoid having duplicate instances
|
|
# of domain-registry classes on the eclipse build path.
|
|
genrule(
|
|
name = "eclipse_deps",
|
|
srcs = ["//java/google/registry/eclipse:registry_deps_deploy.jar"],
|
|
outs = ["eclipse_deps.jar"],
|
|
cmd = " && ".join([
|
|
"JAR=$$(pwd)/$(location @local_jdk//:bin/jar)",
|
|
"IN=$$(pwd)/$(SRCS)",
|
|
"OUT=$$(pwd)/$@",
|
|
"TMP=$$(mktemp -d $${TMPDIR:-/tmp}/eclipse_deps.XXXXXXXX)",
|
|
"cd $$TMP",
|
|
"$$JAR -xf $$IN",
|
|
"rm -rf google/registry",
|
|
"$$JAR -cmf META-INF/MANIFEST.MF eclipse_deps.jar .",
|
|
"mv eclipse_deps.jar $$OUT",
|
|
"rm -rf $$TMP",
|
|
]),
|
|
tools = [
|
|
"@local_jdk//:bin/jar",
|
|
"@local_jdk//:jdk-lib",
|
|
"@local_jdk//:jre-default",
|
|
],
|
|
)
|