File tree Expand file tree Collapse file tree 3 files changed +14
-17
lines changed Expand file tree Collapse file tree 3 files changed +14
-17
lines changed Original file line number Diff line number Diff line change @@ -53,16 +53,19 @@ allprojects {
53
53
content { includeModule ' org.apache.grails' , ' grails-bom' }
54
54
}
55
55
// mavenLocal() // Keep, this will be uncommented and used by CI (groovy-joint-workflow)
56
- maven { url = ' https://repo.grails.org/grails/restricted' }
57
56
maven {
58
57
url = ' https://repository.apache.org/content/groups/snapshots'
59
58
content {
60
- includeGroupByRegex ' org[.]apache[.]((grails)|(groovy)).*'
59
+ includeVersionByRegex ' org[.]apache[.]((grails)|(groovy)).*' , ' .* ' , ' .*-SNAPSHOT '
61
60
}
62
- mavenContent {
63
- snapshotsOnly()
61
+ }
62
+ maven {
63
+ url = ' https://central.sonatype.com/repository/maven-snapshots'
64
+ content {
65
+ includeVersionByRegex ' cloud[.]wondrify' , ' .*' , ' .*-SNAPSHOT'
64
66
}
65
67
}
68
+ maven { url = ' https://repo.grails.org/grails/restricted' }
66
69
}
67
70
}
68
71
Original file line number Diff line number Diff line change @@ -31,9 +31,6 @@ compileJava.options.release = gradleProperties.javaVersion.toString().toInteger(
31
31
32
32
repositories {
33
33
// mavenLocal()
34
- mavenCentral()
35
- gradlePluginPortal()
36
- maven { url = ' https://repo.grails.org/grails/restricted' }
37
34
maven {
38
35
url = ' https://repository.apache.org/content/groups/snapshots'
39
36
content {
@@ -43,12 +40,12 @@ repositories {
43
40
maven {
44
41
url = ' https://central.sonatype.com/repository/maven-snapshots'
45
42
content {
46
- includeVersionByRegex ' cloud[.]wondrify.*' , ' .*' , ' .*-SNAPSHOT'
47
- }
48
- mavenContent {
49
- snapshotsOnly()
43
+ includeVersionByRegex ' cloud[.]wondrify' , ' .*' , ' .*-SNAPSHOT'
50
44
}
51
45
}
46
+ maven { url = ' https://repo.grails.org/grails/restricted' }
47
+ mavenCentral()
48
+ gradlePluginPortal()
52
49
}
53
50
54
51
dependencies {
Original file line number Diff line number Diff line change @@ -27,8 +27,6 @@ file('../gradle.properties').withInputStream {
27
27
allprojects {
28
28
repositories {
29
29
// mavenLocal() // Keep, this will be uncommented and used by CI (groovy-joint-workflow)
30
- mavenCentral()
31
- maven { url = ' https://repo.grails.org/grails/restricted' }
32
30
maven {
33
31
url = ' https://repository.apache.org/content/groups/snapshots'
34
32
content {
@@ -38,12 +36,11 @@ allprojects {
38
36
maven {
39
37
url = ' https://central.sonatype.com/repository/maven-snapshots'
40
38
content {
41
- includeVersionByRegex ' cloud[.]wondrify.*' , ' .*' , ' .*-SNAPSHOT'
42
- }
43
- mavenContent {
44
- snapshotsOnly()
39
+ includeVersionByRegex ' cloud[.]wondrify' , ' .*' , ' .*-SNAPSHOT'
45
40
}
46
41
}
42
+ maven { url = ' https://repo.grails.org/grails/restricted' }
43
+ mavenCentral()
47
44
}
48
45
49
46
props. forEach { k , v -> project. ext. set(k as String , v) }
You can’t perform that action at this time.
0 commit comments