Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update groovy monorepo to v3.0.22 #216

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ allprojects {
dependencies {
// see https://docs.gradle.org/4.1/userguide/dependency_management.html#sec:module_replacement
implementation 'com.github.groovy-wslite:groovy-wslite:1.1.3'
implementation 'org.codehaus.groovy:groovy-all:3.0.21'
implementation 'org.codehaus.groovy:groovy-all:3.0.22'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.1'
implementation 'com.upplication:s3fs:2.2.2'

Expand All @@ -106,8 +106,8 @@ allprojects {
}
// Documentation required libraries
groovyDoc 'org.fusesource.jansi:jansi:2.4.1'
groovyDoc 'org.codehaus.groovy:groovy-groovydoc:3.0.21'
groovyDoc 'org.codehaus.groovy:groovy-ant:3.0.21'
groovyDoc 'org.codehaus.groovy:groovy-groovydoc:3.0.22'
groovyDoc 'org.codehaus.groovy:groovy-ant:3.0.22'
}

test {
Expand Down
6 changes: 3 additions & 3 deletions plugins/nf-quilt/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ dependencies {
//testImplementation(testFixtures('black.ninia:jep:4.0.3'))

// test configuration
testImplementation "org.codehaus.groovy:groovy:3.0.21"
testImplementation "org.codehaus.groovy:groovy-nio:3.0.21"
testImplementation "org.codehaus.groovy:groovy:3.0.22"
testImplementation "org.codehaus.groovy:groovy-nio:3.0.22"
testImplementation "io.nextflow:nextflow:$nextflowVersion"
testImplementation ("org.codehaus.groovy:groovy-test:3.0.21") { exclude group: 'org.codehaus.groovy' }
testImplementation ("org.codehaus.groovy:groovy-test:3.0.22") { exclude group: 'org.codehaus.groovy' }
testImplementation ("cglib:cglib-nodep:3.3.0")
testImplementation ("org.objenesis:objenesis:3.4")
testImplementation ("org.spockframework:spock-core:2.3-groovy-3.0") { exclude group: 'org.codehaus.groovy'; exclude group: 'net.bytebuddy' }
Expand Down
Loading