mirror of
https://github.com/google/nomulus.git
synced 2025-04-30 03:57:51 +02:00
This CL fixes an issue preventing App Engine deploys in the open source world, because an old version of Soy had its Maven jars compiled for Java 1.8. Upgrading to the latest Closure Rules release fixes this. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=128841077
24 lines
715 B
Text
24 lines
715 B
Text
workspace(name = "domain_registry")
|
|
|
|
load("//java/google/registry:repositories.bzl", "domain_registry_repositories")
|
|
|
|
domain_registry_repositories()
|
|
|
|
http_archive(
|
|
name = "io_bazel_rules_closure",
|
|
sha256 = "8c8a0f7f1327178bc8654e658cb6fff1171936e3033c5e263d513a7901a75b31",
|
|
strip_prefix = "rules_closure-0.2.5",
|
|
url = "http://bazel-mirror.storage.googleapis.com/github.com/bazelbuild/rules_closure/archive/0.2.5.tar.gz",
|
|
)
|
|
|
|
load("@io_bazel_rules_closure//closure:defs.bzl", "closure_repositories")
|
|
|
|
closure_repositories(
|
|
omit_gson = True,
|
|
omit_guava = True,
|
|
omit_icu4j = True,
|
|
omit_json = True,
|
|
omit_jsr305 = True,
|
|
omit_jsr330_inject = True,
|
|
omit_protobuf_java = True,
|
|
)
|