jamesfredley commented on code in PR #29:
URL: https://github.com/apache/grails-profiles/pull/29#discussion_r2051592014


##########
profile/skeleton/build.gradle:
##########
@@ -3,25 +3,27 @@ buildscript {
         gradlePluginPortal()
         mavenCentral()
         maven { url "https://repo.grails.org/grails/core"; }
+        maven { url "https://repository.apache.org/content/groups/snapshots/"; }
         // mavenLocal()  // for local testing, do not commit uncommented
     }
     dependencies {
-        classpath platform("org.grails:grails-bom:$grailsVersion")
-        classpath "org.grails:grails-gradle-plugin"
+        classpath platform("org.apache.grails:grails-bom:$grailsVersion")
+        classpath "org.apache.grails:grails-gradle-plugins"
     }
 }
 
-apply plugin: "org.grails.grails-profile"
+apply plugin: "org.apache.grails.gradle.grails-profile"
 
-group 'org.grails.profiles'
+group 'org.apache.grails.profiles'
 version '1.0.0-SNAPSHOT'
 
 repositories {
     mavenCentral()
     maven { url "https://repo.grails.org/grails/core"; }
+    maven { url "https://repository.apache.org/content/groups/snapshots/"; }
     // mavenLocal()  // for local testing, do not commit uncommented
 }  
 
 dependencies {
-    profileRuntimeOnly "org.grails.profiles:base:$baseProfileVersion"
+    profileRuntimeOnly "org.apache.grails.profiles:base:$baseProfileVersion"

Review Comment:
   I applied grails-bom here so that  $baseProfileVersion could be removed.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to