Skip to content

Commit bffbe90

Browse files
committed
reduce load on RAO
1 parent 2092063 commit bffbe90

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,12 @@ allprojects {
3636
repositories {
3737
mavenCentral()
3838
maven { url = 'https://repo.grails.org/grails/restricted' }
39-
maven { url = 'https://repository.apache.org/content/groups/snapshots' }
39+
maven {
40+
url = 'https://repository.apache.org/content/groups/snapshots'
41+
content {
42+
includeVersionByRegex 'org[.]apache[.]grails.*', '.*','.*SNAPSHOT'
43+
}
44+
}
4045
maven {
4146
url = 'https://repository.apache.org/content/groups/staging'
4247
content {

buildSrc/build.gradle

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,13 @@ file('../gradle.properties').withInputStream {
2828

2929
repositories {
3030
mavenCentral()
31-
maven { url = 'https://repo.grails.org/grails/core' }
32-
maven { url = 'https://repository.apache.org/content/groups/snapshots' }
31+
maven { url = 'https://repo.grails.org/grails/restricted' }
32+
maven {
33+
url = 'https://repository.apache.org/content/groups/snapshots'
34+
content {
35+
includeVersionByRegex 'org[.]apache[.]grails.*', '.*','.*SNAPSHOT'
36+
}
37+
}
3338
maven {
3439
url = 'https://repository.apache.org/content/groups/staging'
3540
content {

plugin-ui/examples/extended/build.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,6 @@ plugins {
2525

2626
group = 'functional.test'
2727

28-
repositories {
29-
maven { url = 'https://repo.grails.org/grails/core' }
30-
maven { url = 'https://repository.apache.org/content/repositories/snapshots' }
31-
}
32-
3328
dependencies {
3429

3530
implementation platform("org.apache.grails:grails-bom:$grailsVersion")

plugin-ui/examples/simple/build.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,6 @@ plugins {
2525

2626
group = 'functional.test'
2727

28-
repositories {
29-
maven { url = 'https://repo.grails.org/grails/core' }
30-
maven { url = 'https://repository.apache.org/content/repositories/snapshots' }
31-
}
32-
3328
dependencies {
3429

3530
implementation platform("org.apache.grails:grails-bom:$grailsVersion")

0 commit comments

Comments
 (0)