jdaugherty commented on PR #15320:
URL: https://github.com/apache/grails-core/pull/15320#issuecomment-3769711089

   One other change this PR addresses, is it further refines the expected 
release type for snapshot builds.  The build.gradle of a forge generated app 
(from a grails snapshot) will now have the following: 
   
         repositories {
             maven {
                url = 
'file:/Users/jdaugherty/sandbox/external/grails-core/build/local-maven'
             }
             mavenCentral()
             maven {
                url = 'https://repo.grails.org/grails/restricted'
             }
             maven {
                url = 'https://repository.apache.org/content/groups/snapshots'
                content {
                   includeVersionByRegex('org[.]apache[.]grails.*', '.*', 
'.*-SNAPSHOT')
                }
                content {
                   includeVersionByRegex('org[.]apache[.]groovy.*', 'groovy.*', 
'.*-SNAPSHOT')
                }
                mavenContent {
                   snapshotsOnly()
                }
             }
             maven {
                url = 'https://repository.apache.org/content/groups/staging'
                content {
                   includeVersionByRegex('org[.]apache[.]grails[.]gradle', 
'grails-publish', '.*')
                }
                content {
                   includeVersionByRegex('org[.]apache[.]groovy.*', 'groovy.*', 
'.*')
                }
                mavenContent {
                   releasesOnly()
                }
             }
         }
   


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