matrei commented on code in PR #14948:
URL: https://github.com/apache/grails-core/pull/14948#discussion_r2251040090


##########
build.gradle:
##########
@@ -57,6 +57,15 @@ allprojects {
                 includeVersionByRegex('org[.]apache[.](grails|groovy).*', 
'.*', '.*-SNAPSHOT')
             }
         }
+        maven {
+            url = 'https://central.sonatype.com/repository/maven-snapshots'
+            content {
+                includeVersionByRegex 'cloud[.]wondrify.*', '.*', '.*-SNAPSHOT'
+            }
+            mavenContent {
+                snapshotsOnly()
+            }

Review Comment:
   Is this necessary considering the version regex filter above?



##########
build.gradle:
##########
@@ -57,6 +57,15 @@ allprojects {
                 includeVersionByRegex('org[.]apache[.](grails|groovy).*', 
'.*', '.*-SNAPSHOT')
             }
         }
+        maven {
+            url = 'https://central.sonatype.com/repository/maven-snapshots'
+            content {
+                includeVersionByRegex 'cloud[.]wondrify.*', '.*', '.*-SNAPSHOT'

Review Comment:
   Align on parentheses for method calls?



##########
dependencies.gradle:
##########
@@ -25,7 +25,7 @@ ext {
             'ant.version'                        : '1.10.15',
             'asciidoctor-gradle-jvm.version'     : '4.0.4',
             'asciidoctorj.version'               : '3.0.0',
-            'asset-pipeline-gradle.version'      : '5.0.12',
+            'asset-pipeline-gradle.version': '5.0.14',

Review Comment:
   Spacing?



##########
grails-forge/build.gradle:
##########
@@ -62,6 +62,15 @@ allprojects {
                 includeGroupByRegex('org[.]apache[.]grails.*')
             }
         }
+        maven {
+            url = 'https://central.sonatype.com/repository/maven-snapshots'
+            content {
+                includeVersionByRegex 'cloud[.]wondrify.*', '.*', '.*-SNAPSHOT'
+            }
+            mavenContent {
+                snapshotsOnly()
+            }

Review Comment:
   See previous comments.



##########
grails-gradle/buildSrc/build.gradle:
##########
@@ -29,6 +29,15 @@ repositories {
     // mavenLocal()
     mavenCentral()
     gradlePluginPortal()
+    maven {
+        url = 'https://central.sonatype.com/repository/maven-snapshots'
+        content {
+            includeVersionByRegex 'cloud[.]wondrify.*', '.*', '.*-SNAPSHOT'
+        }
+        mavenContent {
+            snapshotsOnly()
+        }

Review Comment:
   See previous comments.



##########
buildSrc/build.gradle:
##########
@@ -38,6 +38,15 @@ repositories {
         }
     }
     maven { url = 'https://repo.grails.org/grails/restricted' }
+    maven {
+        url = 'https://central.sonatype.com/repository/maven-snapshots'
+        content {
+            includeVersionByRegex 'cloud[.]wondrify.*', '.*', '.*-SNAPSHOT'
+        }
+        mavenContent {
+            snapshotsOnly()
+        }

Review Comment:
   See previous comments.



##########
grails-forge/buildSrc/build.gradle:
##########
@@ -57,6 +57,15 @@ repositories {
             includeGroupByRegex('org[.]apache[.]grails.*')
         }
     }
+    maven {
+        url = 'https://central.sonatype.com/repository/maven-snapshots'
+        content {
+            includeVersionByRegex 'cloud[.]wondrify.*', '.*', '.*-SNAPSHOT'
+        }
+        mavenContent {
+            snapshotsOnly()
+        }

Review Comment:
   See previous comments.



##########
grails-gradle/build.gradle:
##########
@@ -36,6 +36,15 @@ allprojects {
                 includeVersionByRegex('org[.]apache[.](grails|groovy).*', 
'.*', '.*SNAPSHOT')
             }
         }
+        maven {
+            url = 'https://central.sonatype.com/repository/maven-snapshots'
+            content {
+                includeVersionByRegex 'cloud[.]wondrify.*', '.*', '.*-SNAPSHOT'
+            }
+            mavenContent {
+                snapshotsOnly()
+            }

Review Comment:
   See previous comments.



-- 
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