Skip to content

Commit 4cacca3

Browse files
authored
Merge pull request #1844 from jdaugherty/9.0.x
Add back logic for groovy snapshot support
2 parents ece45c5 + 8e4ef49 commit 4cacca3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ allprojects {
4646
if(isSnapshot) {
4747
maven { url = 'https://repo.grails.org/grails/libs-snapshots-local' }
4848
}
49+
if(groovyVersion && groovyVersion.endsWith('-SNAPSHOT')) {
50+
maven {
51+
name = 'ASF Snapshot repo'
52+
url = 'https://repository.apache.org/content/repositories/snapshots'
53+
}
54+
}
4955
}
5056

5157
configurations {

0 commit comments

Comments
 (0)