Skip to content

Commit

Permalink
Bump groovy 4.0.24
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
pditommaso committed Nov 8, 2024
1 parent 549e790 commit dd71ad3
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion docs/developer/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies {
compileOnly 'org.pf4j:pf4j:3.4.1'
testImplementation project(':nextflow')
testImplementation "org.codehaus.groovy:groovy:4.0.23"
testImplementation "org.codehaus.groovy:groovy:4.0.24"
testImplementation "org.codehaus.groovy:groovy-nio:4.0.23"
}
```
Expand Down
2 changes: 1 addition & 1 deletion modules/nextflow/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ compileGroovy {
dependencies {
api(project(':nf-commons'))
api(project(':nf-httpfs'))
api "org.apache.groovy:groovy:4.0.23"
api "org.apache.groovy:groovy:4.0.24"
api "org.apache.groovy:groovy-nio:4.0.23"
api "org.apache.groovy:groovy-xml:4.0.23"
api "org.apache.groovy:groovy-json:4.0.23"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ class ContainersInspectorTest extends Specification {
result == '''\
{
"processes": [
{
"name": "proc2",
"container": "container2"
},
{
"name": "proc1",
"container": "container1"
},
{
"name": "proc2",
"container": "container2"
}
]
}
Expand All @@ -101,8 +101,8 @@ class ContainersInspectorTest extends Specification {
.renderContainers()
then:
result == '''\
process { withName: 'proc2' { container = 'container2' } }
process { withName: 'proc1' { container = 'container1' } }
process { withName: 'proc2' { container = 'container2' } }
'''.stripIndent(true)
}

Expand Down
2 changes: 1 addition & 1 deletion modules/nf-commons/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ sourceSets {

dependencies {
api "ch.qos.logback:logback-classic:1.4.14"
api "org.apache.groovy:groovy:4.0.23"
api "org.apache.groovy:groovy:4.0.24"
api "org.apache.groovy:groovy-nio:4.0.23"
api "commons-lang:commons-lang:2.6"
api 'com.google.guava:guava:33.0.0-jre'
Expand Down
2 changes: 1 addition & 1 deletion modules/nf-httpfs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ sourceSets {
dependencies {
api project(':nf-commons')
api "ch.qos.logback:logback-classic:1.4.14"
api "org.apache.groovy:groovy:4.0.23"
api "org.apache.groovy:groovy:4.0.24"
api "org.apache.groovy:groovy-nio:4.0.23"
api("com.esotericsoftware.kryo:kryo:2.24.0") { exclude group: 'com.esotericsoftware.minlog', module: 'minlog' }

Expand Down
2 changes: 1 addition & 1 deletion plugins/nf-amazon/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ dependencies {

testImplementation(testFixtures(project(":nextflow")))
testImplementation project(':nextflow')
testImplementation "org.apache.groovy:groovy:4.0.23"
testImplementation "org.apache.groovy:groovy:4.0.24"
testImplementation "org.apache.groovy:groovy-nio:4.0.23"
}
2 changes: 1 addition & 1 deletion plugins/nf-azure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ dependencies {

testImplementation(testFixtures(project(":nextflow")))
testImplementation project(':nextflow')
testImplementation "org.apache.groovy:groovy:4.0.23"
testImplementation "org.apache.groovy:groovy:4.0.24"
testImplementation "org.apache.groovy:groovy-nio:4.0.23"
}
2 changes: 1 addition & 1 deletion plugins/nf-cloudcache/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencies {
compileOnly 'org.pf4j:pf4j:3.12.0'

testImplementation(testFixtures(project(":nextflow")))
testImplementation "org.apache.groovy:groovy:4.0.23"
testImplementation "org.apache.groovy:groovy:4.0.24"
testImplementation "org.apache.groovy:groovy-nio:4.0.23"
}

2 changes: 1 addition & 1 deletion plugins/nf-codecommit/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ dependencies {

testImplementation(testFixtures(project(":nextflow")))
testImplementation project(':nextflow')
testImplementation "org.apache.groovy:groovy:4.0.23"
testImplementation "org.apache.groovy:groovy:4.0.24"
testImplementation "org.apache.groovy:groovy-nio:4.0.23"
}
2 changes: 1 addition & 1 deletion plugins/nf-console/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies {

testImplementation(testFixtures(project(":nextflow")))
testImplementation project(':nextflow')
testImplementation "org.apache.groovy:groovy:4.0.23"
testImplementation "org.apache.groovy:groovy:4.0.24"
testImplementation "org.apache.groovy:groovy-nio:4.0.23"
}

2 changes: 1 addition & 1 deletion plugins/nf-google/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dependencies {
runtimeOnly 'com.google.protobuf:protobuf-java:3.25.5'

testImplementation(testFixtures(project(":nextflow")))
testImplementation "org.apache.groovy:groovy:4.0.23"
testImplementation "org.apache.groovy:groovy:4.0.24"
testImplementation "org.apache.groovy:groovy-nio:4.0.23"
}

Expand Down
2 changes: 1 addition & 1 deletion plugins/nf-tower/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ dependencies {
api "com.fasterxml.jackson.core:jackson-databind:2.12.7.1"

testImplementation(testFixtures(project(":nextflow")))
testImplementation "org.apache.groovy:groovy:4.0.23"
testImplementation "org.apache.groovy:groovy:4.0.24"
testImplementation "org.apache.groovy:groovy-nio:4.0.23"
}
2 changes: 1 addition & 1 deletion plugins/nf-wave/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ dependencies {
api 'io.seqera:wave-utils:0.14.1'

testImplementation(testFixtures(project(":nextflow")))
testImplementation "org.apache.groovy:groovy:4.0.23"
testImplementation "org.apache.groovy:groovy:4.0.24"
testImplementation "org.apache.groovy:groovy-nio:4.0.23"
}

0 comments on commit dd71ad3

Please sign in to comment.