Skip to content

Commit 258e179

Browse files
authored
Bump Groovy to version 4.0.27 (#6125) [ci fast]
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
1 parent 9b48df4 commit 258e179

File tree

15 files changed

+38
-38
lines changed

15 files changed

+38
-38
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ allprojects {
103103

104104
// Documentation required libraries
105105
groovyDoc 'org.fusesource.jansi:jansi:2.4.0'
106-
groovyDoc "org.apache.groovy:groovy-groovydoc:4.0.26"
107-
groovyDoc "org.apache.groovy:groovy-ant:4.0.26"
106+
groovyDoc "org.apache.groovy:groovy-groovydoc:4.0.27"
107+
groovyDoc "org.apache.groovy:groovy-ant:4.0.27"
108108
}
109109

110110
test {

modules/nextflow/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ dependencies {
2525
api(project(':nf-commons'))
2626
api(project(':nf-httpfs'))
2727
api(project(':nf-lang'))
28-
api "org.apache.groovy:groovy:4.0.26"
29-
api "org.apache.groovy:groovy-nio:4.0.26"
30-
api "org.apache.groovy:groovy-xml:4.0.26"
31-
api "org.apache.groovy:groovy-json:4.0.26"
32-
api "org.apache.groovy:groovy-templates:4.0.26"
33-
api "org.apache.groovy:groovy-yaml:4.0.26"
28+
api "org.apache.groovy:groovy:4.0.27"
29+
api "org.apache.groovy:groovy-nio:4.0.27"
30+
api "org.apache.groovy:groovy-xml:4.0.27"
31+
api "org.apache.groovy:groovy-json:4.0.27"
32+
api "org.apache.groovy:groovy-templates:4.0.27"
33+
api "org.apache.groovy:groovy-yaml:4.0.27"
3434
api "org.slf4j:jcl-over-slf4j:2.0.16"
3535
api "org.slf4j:jul-to-slf4j:2.0.16"
3636
api "org.slf4j:log4j-over-slf4j:2.0.16"
@@ -57,7 +57,7 @@ dependencies {
5757
testImplementation 'org.subethamail:subethasmtp:3.1.7'
5858
testImplementation (project(':nf-lineage'))
5959
// test configuration
60-
testFixturesApi ("org.apache.groovy:groovy-test:4.0.26") { exclude group: 'org.apache.groovy' }
60+
testFixturesApi ("org.apache.groovy:groovy-test:4.0.27") { exclude group: 'org.apache.groovy' }
6161
testFixturesApi ("org.objenesis:objenesis:3.4")
6262
testFixturesApi ("net.bytebuddy:byte-buddy:1.14.17")
6363
testFixturesApi ("org.spockframework:spock-core:2.3-groovy-4.0") { exclude group: 'org.apache.groovy' }

modules/nf-commons/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ sourceSets {
2626

2727
dependencies {
2828
api "ch.qos.logback:logback-classic:1.5.16"
29-
api "org.apache.groovy:groovy:4.0.26"
30-
api "org.apache.groovy:groovy-nio:4.0.26"
29+
api "org.apache.groovy:groovy:4.0.27"
30+
api "org.apache.groovy:groovy-nio:4.0.27"
3131
api "commons-lang:commons-lang:2.6"
3232
api 'com.google.guava:guava:33.0.0-jre'
3333
api 'org.pf4j:pf4j:3.12.0'
@@ -40,7 +40,7 @@ dependencies {
4040
testImplementation(testFixtures(project(":nextflow")))
4141
testFixturesImplementation(project(":nextflow"))
4242

43-
testImplementation "org.apache.groovy:groovy-json:4.0.26" // needed by wiremock
43+
testImplementation "org.apache.groovy:groovy-json:4.0.27" // needed by wiremock
4444
testImplementation ('com.github.tomakehurst:wiremock:3.0.0-beta-1') { exclude module: 'groovy-all' }
4545
testImplementation ('com.github.tomjankes:wiremock-groovy:0.2.0') { exclude module: 'groovy-all' }
4646
}

modules/nf-httpfs/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ sourceSets {
3030
dependencies {
3131
api project(':nf-commons')
3232
api "ch.qos.logback:logback-classic:1.5.16"
33-
api "org.apache.groovy:groovy:4.0.26"
34-
api "org.apache.groovy:groovy-nio:4.0.26"
33+
api "org.apache.groovy:groovy:4.0.27"
34+
api "org.apache.groovy:groovy-nio:4.0.27"
3535
api("com.esotericsoftware.kryo:kryo:2.24.0") { exclude group: 'com.esotericsoftware.minlog', module: 'minlog' }
3636

3737
/* testImplementation inherited from top gradle build file */
38-
testImplementation "org.apache.groovy:groovy-json:4.0.26" // needed by wiremock
38+
testImplementation "org.apache.groovy:groovy-json:4.0.27" // needed by wiremock
3939
testImplementation ('com.github.tomakehurst:wiremock:1.57') { exclude module: 'groovy-all' }
4040
testImplementation ('com.github.tomjankes:wiremock-groovy:0.2.0') { exclude module: 'groovy-all' }
4141

modules/nf-lang/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ plugins {
1919

2020
dependencies {
2121
antlr 'me.sunlan:antlr4:4.13.2.6'
22-
api 'org.apache.groovy:groovy:4.0.26'
22+
api 'org.apache.groovy:groovy:4.0.27'
2323
api 'org.pf4j:pf4j:3.12.0'
2424

2525
testFixturesApi 'com.google.jimfs:jimfs:1.2'

modules/nf-lineage/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies {
3333
api project(':nextflow')
3434

3535
testImplementation(testFixtures(project(":nextflow")))
36-
testImplementation "org.apache.groovy:groovy:4.0.26"
37-
testImplementation "org.apache.groovy:groovy-nio:4.0.26"
36+
testImplementation "org.apache.groovy:groovy:4.0.27"
37+
testImplementation "org.apache.groovy:groovy-nio:4.0.27"
3838
}
3939

plugins/nf-amazon/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ dependencies {
6060

6161
testImplementation(testFixtures(project(":nextflow")))
6262
testImplementation project(':nextflow')
63-
testImplementation "org.apache.groovy:groovy:4.0.26"
64-
testImplementation "org.apache.groovy:groovy-nio:4.0.26"
63+
testImplementation "org.apache.groovy:groovy:4.0.27"
64+
testImplementation "org.apache.groovy:groovy-nio:4.0.27"
6565
}

plugins/nf-azure/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ dependencies {
5353

5454
testImplementation(testFixtures(project(":nextflow")))
5555
testImplementation project(':nextflow')
56-
testImplementation "org.apache.groovy:groovy:4.0.26"
57-
testImplementation "org.apache.groovy:groovy-nio:4.0.26"
56+
testImplementation "org.apache.groovy:groovy:4.0.27"
57+
testImplementation "org.apache.groovy:groovy-nio:4.0.27"
5858
}

plugins/nf-cloudcache/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dependencies {
3535
compileOnly 'org.pf4j:pf4j:3.12.0'
3636

3737
testImplementation(testFixtures(project(":nextflow")))
38-
testImplementation "org.apache.groovy:groovy:4.0.26"
39-
testImplementation "org.apache.groovy:groovy-nio:4.0.26"
38+
testImplementation "org.apache.groovy:groovy:4.0.27"
39+
testImplementation "org.apache.groovy:groovy-nio:4.0.27"
4040
}
4141

plugins/nf-codecommit/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ dependencies {
4242

4343
testImplementation(testFixtures(project(":nextflow")))
4444
testImplementation project(':nextflow')
45-
testImplementation "org.apache.groovy:groovy:4.0.26"
46-
testImplementation "org.apache.groovy:groovy-nio:4.0.26"
45+
testImplementation "org.apache.groovy:groovy:4.0.27"
46+
testImplementation "org.apache.groovy:groovy-nio:4.0.27"
4747
}

0 commit comments

Comments
 (0)