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 2022/01/20 13:26:59 UTC

[groovy] branch GROOVY_3_0_X updated: no need for jcenter reference in the build

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 7174a60  no need for jcenter reference in the build
7174a60 is described below

commit 7174a6060b11eb76176e038cfc4e8851e875a483
Author: Paul King <pa...@asert.com.au>
AuthorDate: Thu Jan 20 23:26:53 2022 +1000

    no need for jcenter reference in the build
---
 build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.gradle b/build.gradle
index 45f99cd..4b8e2d7 100644
--- a/build.gradle
+++ b/build.gradle
@@ -24,7 +24,7 @@ buildscript {
             // Try to use Aliyun maven repository when building in China
             maven { url 'https://maven.aliyun.com/nexus/content/groups/public' }
         }
-        jcenter()
+        mavenCentral()
         maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
         maven {
             url "https://plugins.gradle.org/m2/"
@@ -85,7 +85,7 @@ allprojects {
             // Try to use Aliyun maven repository when building in China
             maven { url 'https://maven.aliyun.com/nexus/content/groups/public' }
         }
-        jcenter()
+        mavenCentral()
 //        maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
 //        mavenLocal()
     }