@@ -51,23 +51,22 @@ sourceSets {
51
51
}
52
52
53
53
ext {
54
- nextflowVersion = ' 24 .04.0'
54
+ nextflowVersion = ' 25 .04.0'
55
55
}
56
56
57
57
dependencies {
58
58
compileOnly " io.nextflow:nextflow:$nextflowVersion "
59
- compileOnly ' org.slf4j:slf4j-api:2.0.7 '
59
+ compileOnly ' org.slf4j:slf4j-api:2.0.16 '
60
60
compileOnly ' org.pf4j:pf4j:3.12.0'
61
61
62
- api(" org.apache.groovy:groovy-sql:4.0.23 " ) { transitive = false }
62
+ api(" org.apache.groovy:groovy-sql:4.0.26 " ) { transitive = false }
63
63
api ' com.h2database:h2:1.4.200'
64
64
api ' mysql:mysql-connector-java:8.0.33'
65
65
api ' org.mariadb.jdbc:mariadb-java-client:2.7.0'
66
66
api ' org.postgresql:postgresql:42.7.4'
67
67
api ' org.xerial:sqlite-jdbc:3.47.0.0'
68
68
api ' org.duckdb:duckdb_jdbc:0.10.2'
69
69
70
-
71
70
// JDBC driver setup for AWS Athena - the 3rd party JAR are being downloaded and setup as gradle tasks below.
72
71
// Reference https://docs.aws.amazon.com/athena/latest/ug/connect-with-jdbc.html
73
72
api files(' src/dist/lib/AthenaJDBC42_2.0.25.1001.jar' )
@@ -76,10 +75,10 @@ dependencies {
76
75
implementation fileTree(dir : ' src/dist/lib/libs' , include : ' *.jar' )
77
76
78
77
// 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 "
81
80
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' }
83
82
testImplementation (" cglib:cglib-nodep:3.3.0" )
84
83
testImplementation (" org.objenesis:objenesis:3.1" )
85
84
testImplementation (" org.spockframework:spock-core:2.3-groovy-4.0" ) { exclude group : ' org.apache.groovy' ; exclude group : ' net.bytebuddy' }
0 commit comments