Skip to content

Commit c012b04

Browse files
committed
Signed-off-by: Paolo Di Tommaso <[email protected]>
1 parent 0cca8fa commit c012b04

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

plugins/nf-sqldb/build.gradle

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,23 +51,22 @@ sourceSets {
5151
}
5252

5353
ext{
54-
nextflowVersion = '24.04.0'
54+
nextflowVersion = '25.04.0'
5555
}
5656

5757
dependencies {
5858
compileOnly "io.nextflow:nextflow:$nextflowVersion"
59-
compileOnly 'org.slf4j:slf4j-api:2.0.7'
59+
compileOnly 'org.slf4j:slf4j-api:2.0.16'
6060
compileOnly 'org.pf4j:pf4j:3.12.0'
6161

62-
api("org.apache.groovy:groovy-sql:4.0.23") { transitive = false }
62+
api("org.apache.groovy:groovy-sql:4.0.26") { transitive = false }
6363
api 'com.h2database:h2:1.4.200'
6464
api 'mysql:mysql-connector-java:8.0.33'
6565
api 'org.mariadb.jdbc:mariadb-java-client:2.7.0'
6666
api 'org.postgresql:postgresql:42.7.4'
6767
api 'org.xerial:sqlite-jdbc:3.47.0.0'
6868
api 'org.duckdb:duckdb_jdbc:0.10.2'
6969

70-
7170
// JDBC driver setup for AWS Athena - the 3rd party JAR are being downloaded and setup as gradle tasks below.
7271
// Reference https://docs.aws.amazon.com/athena/latest/ug/connect-with-jdbc.html
7372
api files('src/dist/lib/AthenaJDBC42_2.0.25.1001.jar')
@@ -76,10 +75,10 @@ dependencies {
7675
implementation fileTree(dir: 'src/dist/lib/libs', include: '*.jar')
7776

7877
// test configuration
79-
testImplementation "org.apache.groovy:groovy:4.0.23"
80-
testImplementation "org.apache.groovy:groovy-nio:4.0.23"
78+
testImplementation "org.apache.groovy:groovy:4.0.26"
79+
testImplementation "org.apache.groovy:groovy-nio:4.0.26"
8180
testImplementation "io.nextflow:nextflow:$nextflowVersion"
82-
testImplementation ("org.apache.groovy:groovy-test:4.0.23") { exclude group: 'org.apache.groovy' }
81+
testImplementation ("org.apache.groovy:groovy-test:4.0.26") { exclude group: 'org.apache.groovy' }
8382
testImplementation ("cglib:cglib-nodep:3.3.0")
8483
testImplementation ("org.objenesis:objenesis:3.1")
8584
testImplementation ("org.spockframework:spock-core:2.3-groovy-4.0") { exclude group: 'org.apache.groovy'; exclude group: 'net.bytebuddy' }

plugins/nf-sqldb/src/resources/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Plugin-Class: nextflow.sql.SqlPlugin
33
Plugin-Id: nf-sqldb
44
Plugin-Provider: Seqera Labs
55
Plugin-Version: 0.6.0
6-
Plugin-Requires: >=24.04.0
6+
Plugin-Requires: >=25.04.0

0 commit comments

Comments
 (0)