You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2019/09/23 00:58:23 UTC

[groovy] branch GROOVY_3_0_X updated: fix repos for snapshot spock version

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch GROOVY_3_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/GROOVY_3_0_X by this push:
     new 842b02c  fix repos for snapshot spock version
842b02c is described below

commit 842b02c77b6b07430bbe22f3e0a8931c01aeb309
Author: Paul King <pa...@asert.com.au>
AuthorDate: Mon Sep 23 10:58:10 2019 +1000

    fix repos for snapshot spock version
---
 subprojects/groovy-nio/build.gradle       | 6 ++++++
 subprojects/groovy-templates/build.gradle | 6 ++++++
 2 files changed, 12 insertions(+)

diff --git a/subprojects/groovy-nio/build.gradle b/subprojects/groovy-nio/build.gradle
index d12c4f9..4ff3b18 100644
--- a/subprojects/groovy-nio/build.gradle
+++ b/subprojects/groovy-nio/build.gradle
@@ -16,6 +16,12 @@
  *  specific language governing permissions and limitations
  *  under the License.
  */
+repositories {
+    maven {
+        url 'https://oss.sonatype.org/content/repositories/snapshots'
+    }
+}
+
 dependencies {
     compile rootProject
     testCompile project(':groovy-test')
diff --git a/subprojects/groovy-templates/build.gradle b/subprojects/groovy-templates/build.gradle
index 72c120e..28bf0a8 100644
--- a/subprojects/groovy-templates/build.gradle
+++ b/subprojects/groovy-templates/build.gradle
@@ -16,6 +16,12 @@
  *  specific language governing permissions and limitations
  *  under the License.
  */
+repositories {
+    maven {
+        url 'https://oss.sonatype.org/content/repositories/snapshots'
+    }
+}
+
 dependencies {
     compile rootProject
     compile project(':groovy-xml')