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

jdaugherty pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/grails-core.git


The following commit(s) were added to refs/heads/7.0.x by this push:
     new cbb7532e96 ensure the apache repo is always after the combined grails 
repo
cbb7532e96 is described below

commit cbb7532e9623e29a2a28f7a2680220406b111d89
Author: James Daugherty <[email protected]>
AuthorDate: Tue May 27 12:54:33 2025 -0400

    ensure the apache repo is always after the combined grails repo
---
 grails-profiles/profile/skeleton/build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/grails-profiles/profile/skeleton/build.gradle 
b/grails-profiles/profile/skeleton/build.gradle
index 683307a3e3..f25713cf3c 100644
--- a/grails-profiles/profile/skeleton/build.gradle
+++ b/grails-profiles/profile/skeleton/build.gradle
@@ -2,8 +2,8 @@ buildscript {
     repositories {
         gradlePluginPortal()
         mavenCentral()
-        maven { url = 'https://repository.apache.org/content/groups/public' }
         maven { url = 'https://repo.grails.org/grails/restricted' }
+        maven { url = 'https://repository.apache.org/content/groups/public' }
         // mavenLocal()  // for local testing, do not commit uncommented
     }
     dependencies {
@@ -19,8 +19,8 @@ version = '1.0.0-SNAPSHOT'
 
 repositories {
     mavenCentral()
-    maven { url = 'https://repository.apache.org/content/groups/public' }
     maven { url = 'https://repo.grails.org/grails/restricted' }
+    maven { url = 'https://repository.apache.org/content/groups/public' }
     // mavenLocal()  // for local testing, do not commit uncommented
 }  
 

Reply via email to