aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Erik Kuefler <ekuefler@gmail.com>2016-03-15 14:54:20 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2016-03-15 20:30:51 +0000
commitc430de2b9f67127261666314525d882b282101a2 (patch)
treea40a33196cb391ed7cca5d04c25e0ded54706338 /tools
parentaac3b7ee0f1889c6afe4c0b4432d9f1597230dfb (diff)
Fix repository names for Groovy
-- Change-Id: I1831a657552a661a555c7f8bef54e8f46ddd482d Reviewed-on: https://bazel-review.googlesource.com/#/c/3050/ MOS_MIGRATED_REVID=117238730
Diffstat (limited to 'tools')
-rw-r--r--tools/build_defs/groovy/groovy.bzl14
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/build_defs/groovy/groovy.bzl b/tools/build_defs/groovy/groovy.bzl
index 0ddbbd95b0..c995b50b2e 100644
--- a/tools/build_defs/groovy/groovy.bzl
+++ b/tools/build_defs/groovy/groovy.bzl
@@ -377,7 +377,7 @@ def spock_test(
def groovy_repositories():
native.new_http_archive(
- name = "groovy-sdk-artifact",
+ name = "groovy_sdk_artifact",
url = "http://dl.bintray.com/groovy/maven/apache-groovy-binary-2.4.4.zip",
sha256 = "a7cc1e5315a14ea38db1b2b9ce0792e35174161141a6a3e2ef49b7b2788c258c",
build_file_content = """
@@ -395,27 +395,27 @@ java_import(
)
native.bind(
name = "groovy-sdk",
- actual = "@groovy-sdk-artifact//:sdk",
+ actual = "@groovy_sdk_artifact//:sdk",
)
native.bind(
name = "groovy",
- actual = "@groovy-sdk-artifact//:groovy",
+ actual = "@groovy_sdk_artifact//:groovy",
)
native.maven_jar(
- name = "junit-artifact",
+ name = "junit_artifact",
artifact = "junit:junit:4.12",
)
native.bind(
name = "junit",
- actual = "@junit-artifact//jar",
+ actual = "@junit_artifact//jar",
)
native.maven_jar(
- name = "spock-artifact",
+ name = "spock_artifact",
artifact = "org.spockframework:spock-core:0.7-groovy-2.0",
)
native.bind(
name = "spock",
- actual = "@spock-artifact//jar",
+ actual = "@spock_artifact//jar",
)