Skip to content

Commit 0992b4b

Browse files
committed
Adjust includeVersionByRegex and includeGroupRegex to use parenthesis
1 parent a8164b4 commit 0992b4b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,19 @@ allprojects {
3939
maven {
4040
url = 'https://repository.apache.org/content/groups/snapshots'
4141
content {
42-
includeVersionByRegex 'org[.]apache[.]((grails)|(groovy)).*', '.*','.*SNAPSHOT'
42+
includeVersionByRegex('org[.]apache[.]((grails)|(groovy)).*', '.*','.*SNAPSHOT')
4343
}
4444
}
4545
maven {
4646
url = 'https://repository.apache.org/content/groups/staging'
4747
content {
48-
includeGroupByRegex 'org[.]apache[.]grails.*'
48+
includeGroupByRegex('org[.]apache[.]grails.*')
4949
}
5050
}
5151
maven {
5252
url = 'https://central.sonatype.com/repository/maven-snapshots'
5353
content {
54-
includeVersionByRegex 'cloud[.]wondrify', '.*', '.*-SNAPSHOT'
54+
includeVersionByRegex('cloud[.]wondrify', '.*', '.*-SNAPSHOT')
5555
}
5656
}
5757
}

buildSrc/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ repositories {
3232
maven {
3333
url = 'https://repository.apache.org/content/groups/snapshots'
3434
content {
35-
includeVersionByRegex 'org[.]apache[.]((grails)|(groovy)).*', '.*','.*SNAPSHOT'
35+
includeVersionByRegex('org[.]apache[.]((grails)|(groovy)).*', '.*','.*SNAPSHOT')
3636
}
3737
}
3838
maven {
3939
url = 'https://repository.apache.org/content/groups/staging'
4040
content {
41-
includeGroupByRegex 'org[.]apache[.]grails.*'
41+
includeGroupByRegex('org[.]apache[.]grails.*')
4242
}
4343
}
4444
maven {
4545
url = 'https://central.sonatype.com/repository/maven-snapshots'
4646
content {
47-
includeVersionByRegex 'cloud[.]wondrify', '.*', '.*-SNAPSHOT'
47+
includeVersionByRegex('cloud[.]wondrify', '.*', '.*-SNAPSHOT')
4848
}
4949
}
5050
}

0 commit comments

Comments
 (0)