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

richox pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/auron.git


The following commit(s) were added to refs/heads/master by this push:
     new ff24517e [AURON #1732] Add maven repository (#1733)
ff24517e is described below

commit ff24517e56137d601e7891ce23dd872a9e8e01cf
Author: cxzl25 <[email protected]>
AuthorDate: Wed Dec 17 19:43:36 2025 +0800

    [AURON #1732] Add maven repository (#1733)
    
    # Which issue does this PR close?
    
    Closes #1732
    
    # Rationale for this change
    
    Now Maven uses `repo.maven.apache.org`, sometimes CI is not stable,
    let's try GCS.
    
    # What changes are included in this PR?
    
    # Are there any user-facing changes?
    
    # How was this patch tested?
---
 pom.xml | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)

diff --git a/pom.xml b/pom.xml
index f7ed0dfc..d46edea1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -270,6 +270,57 @@
     </dependency>
   </dependencies>
 
+  <repositories>
+    <repository>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+      <id>gcs-maven-central-mirror</id>
+      <name>GCS Maven Central mirror Asia Pacific</name>
+      
<url>https://maven-central-asia.storage-download.googleapis.com/maven2/</url>
+    </repository>
+
+    <repository>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+      <id>central</id>
+      <name>Maven Repository</name>
+      <url>https://repo.maven.apache.org/maven2</url>
+    </repository>
+  </repositories>
+
+  <pluginRepositories>
+    <pluginRepository>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+      <id>gcs-maven-central-mirror</id>
+      <name>GCS Maven Central mirror Asia Pacific</name>
+      
<url>https://maven-central-asia.storage-download.googleapis.com/maven2/</url>
+    </pluginRepository>
+
+    <pluginRepository>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+      <id>central</id>
+      <url>https://repo.maven.apache.org/maven2</url>
+    </pluginRepository>
+  </pluginRepositories>
+
   <build>
     <plugins>
       <!-- compile java -->

Reply via email to