File tree Expand file tree Collapse file tree 3 files changed +9
-16
lines changed
Expand file tree Collapse file tree 3 files changed +9
-16
lines changed Original file line number Diff line number Diff line change @@ -13,18 +13,12 @@ repositories {
1313}
1414
1515java {
16+ // these settings apply to all jvm tooling, including groovy
1617 toolchain {
1718 languageVersion = JavaLanguageVersion . of(21 )
1819 }
19- }
20-
21- compileJava {
22- options. release. set(17 )
23- }
24-
25- tasks. withType(GroovyCompile ) {
26- sourceCompatibility = ' 17'
27- targetCompatibility = ' 17'
20+ sourceCompatibility = 17
21+ targetCompatibility = 17
2822}
2923
3024tasks. withType(Test ) {
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-8.4 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.13 -bin.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 4040dependencies {
4141 // This dependency is exported to consumers, that is to say found on their compile classpath.
4242 compileOnly " io.nextflow:nextflow:$nextflowVersion "
43- compileOnly ' org.slf4j:slf4j-api:1.7.10'
44- compileOnly ' org.pf4j:pf4j:3.4.1'
45- // add here plugins depepencies
43+ compileOnly ' org.slf4j:slf4j-api:2.0.16'
44+ compileOnly ' org.pf4j:pf4j:3.12.0'
4645
4746 // test configuration
48- testImplementation " org.apache.groovy:groovy:4.0.18 "
49- testImplementation " org.apache.groovy:groovy-nio:4.0.18 "
47+ testImplementation " org.apache.groovy:groovy:4.0.26 "
48+ testImplementation " org.apache.groovy:groovy-nio:4.0.26 "
5049 testImplementation " io.nextflow:nextflow:$nextflowVersion "
51- testImplementation (" org.apache.groovy:groovy-test:4.0.18 " ) { exclude group : ' org.apache.groovy' }
50+ testImplementation (" org.apache.groovy:groovy-test:4.0.26 " ) { exclude group : ' org.apache.groovy' }
5251 testImplementation (" cglib:cglib-nodep:3.3.0" )
5352 testImplementation (" org.objenesis:objenesis:3.1" )
5453 testImplementation (" org.spockframework:spock-core:2.3-groovy-4.0" ) { exclude group : ' org.apache.groovy' ; exclude group : ' net.bytebuddy' }
You can’t perform that action at this time.
0 commit comments