Skip to content

Commit

Permalink
Update for Apache Snapshot repository
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesfredley committed Sep 8, 2024
1 parent 964e0de commit 52694bb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,13 @@ subprojects { subproject ->

repositories {
mavenCentral()
maven { url = "https://repo.grails.org/grails/core" }
maven { url "https://repo.grails.org/grails/core" }
if(groovyVersion.endsWith('-SNAPSHOT')) {
maven {
name = 'ASF Snapshot repo'
url = 'https://repository.apache.org/content/repositories/snapshots'
}
}
}

if (subproject.name.startsWith("examples")) {
Expand Down

0 comments on commit 52694bb

Please sign in to comment.