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/08/29 06:28:35 UTC

[groovy] 01/07: Remove aliyun maven repos

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

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

commit e992fc17e4925dddae089ba9c247155a25b04775
Author: Goooler <wa...@gmail.com>
AuthorDate: Sun Aug 14 00:42:04 2022 +0800

    Remove aliyun maven repos
---
 build.gradle                                             | 4 ----
 buildSrc/src/main/groovy/org.apache.groovy-common.gradle | 4 ----
 2 files changed, 8 deletions(-)

diff --git a/build.gradle b/build.gradle
index 532cd74935..5eafe8ab8f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -18,10 +18,6 @@
  */
 buildscript {
     repositories {
-        if (rootProject.hasProperty('buildInChina')) {
-            // Try to use Aliyun maven repository when building in China
-            maven { url 'https://maven.aliyun.com/nexus/content/groups/public' }
-        }
         mavenCentral()
 //        maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
         maven {
diff --git a/buildSrc/src/main/groovy/org.apache.groovy-common.gradle b/buildSrc/src/main/groovy/org.apache.groovy-common.gradle
index cb9ceeb1c0..2db32283a2 100644
--- a/buildSrc/src/main/groovy/org.apache.groovy-common.gradle
+++ b/buildSrc/src/main/groovy/org.apache.groovy-common.gradle
@@ -42,10 +42,6 @@ group = 'org.apache.groovy'
 version = sharedConfiguration.groovyVersion.get()
 
 repositories {
-    if (rootProject.hasProperty('buildInChina')) {
-        // Try to use Aliyun maven repository when building in China
-        maven { url 'https://maven.aliyun.com/nexus/content/groups/public' }
-    }
     mavenCentral()
 }