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 ad7f1750a5 revert changes to profile-base
ad7f1750a5 is described below

commit ad7f1750a5667b1be858fd121f645f6bfee9b03c
Author: James Daugherty <[email protected]>
AuthorDate: Wed Oct 8 21:14:08 2025 -0400

    revert changes to profile-base
---
 grails-profiles/base/skeleton/build.gradle | 22 +++++++++-------------
 1 file changed, 9 insertions(+), 13 deletions(-)

diff --git a/grails-profiles/base/skeleton/build.gradle 
b/grails-profiles/base/skeleton/build.gradle
index fae8614bac..792c911472 100644
--- a/grails-profiles/base/skeleton/build.gradle
+++ b/grails-profiles/base/skeleton/build.gradle
@@ -1,21 +1,17 @@
 buildscript {
     repositories {
         mavenCentral()
-@buildRepositories@
+        @buildRepositories@
         maven {
             url = 'https://repository.apache.org/content/groups/snapshots'
             content {
-              includeVersionByRegex('org[.]apache[.]grails.*', '.*', 
'.*-SNAPSHOT')
-              includeVersionByRegex('org[.]apache[.]groovy.*', '.*', 
'.*-SNAPSHOT')
-            }
-            mavenContent {
-                snapshotsOnly()
+                includeVersionByRegex('org[.]apache[.](grails|groovy).*', 
'.*', '.*-SNAPSHOT')
             }
         }
     }
     dependencies {
         classpath platform("org.apache.grails:grails-bom:$grailsVersion")
-@buildDependencies@
+        @buildDependencies@
     }
 }
 
@@ -26,17 +22,17 @@ group = "@grails.app.group@"
 
 repositories {
     mavenCentral()
-@repositories@
+    @repositories@
     maven {
-       url = 'https://repository.apache.org/content/groups/snapshots'
-       content {
-          includeVersionByRegex('org[.]apache[.](grails|groovy).*', '.*', 
'.*-SNAPSHOT')
-       }
+        url = 'https://repository.apache.org/content/groups/snapshots'
+        content {
+            includeVersionByRegex('org[.]apache[.](grails|groovy).*', '.*', 
'.*-SNAPSHOT')
+        }
     }
 }
 
 dependencies {
-@dependencies@
+    @dependencies@
 }
 
 compileJava.options.release = 17

Reply via email to