Skip to content

Commit f27ec4b

Browse files
authored
Update build.gradle
1 parent b87027d commit f27ec4b

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

grails-profiles/base/skeleton/build.gradle

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ buildscript {
22
repositories {
33
mavenCentral()
44
@buildRepositories@
5-
5+
maven {
6+
url = 'https://repository.apache.org/content/groups/snapshots'
7+
content {
8+
includeVersionByRegex('org[.]apache[.](grails|groovy).*', '.*', '.*-SNAPSHOT')
9+
}
10+
}
611
}
712
dependencies {
813
classpath platform("org.apache.grails:grails-bom:$grailsVersion")
@@ -18,6 +23,12 @@ group "@grails.app.group@"
1823
repositories {
1924
mavenCentral()
2025
@repositories@
26+
maven {
27+
url = 'https://repository.apache.org/content/groups/snapshots'
28+
content {
29+
includeVersionByRegex('org[.]apache[.](grails|groovy).*', '.*', '.*-SNAPSHOT')
30+
}
31+
}
2132
}
2233

2334
dependencies {

0 commit comments

Comments
 (0)