Skip to content
This repository was archived by the owner on Sep 1, 2025. It is now read-only.

Commit a457cbc

Browse files
committed
Update to Java 17
- update toolchain to Java 21 - bump nextflow to 24.11.0-edge Signed-off-by: Tom Sellman <[email protected]>
1 parent f686fbc commit a457cbc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

buildSrc/src/main/groovy/io.nextflow.groovy-common-conventions.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ repositories {
1414

1515
java {
1616
toolchain {
17-
languageVersion = JavaLanguageVersion.of(19)
17+
languageVersion = JavaLanguageVersion.of(21)
1818
}
1919
}
2020

2121
compileJava {
22-
options.release.set(11)
22+
options.release.set(17)
2323
}
2424

2525
tasks.withType(GroovyCompile) {
26-
sourceCompatibility = '11'
27-
targetCompatibility = '11'
26+
sourceCompatibility = '17'
27+
targetCompatibility = '17'
2828
}
2929

3030
tasks.withType(Test) {

plugins/nf-hello/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ sourceSets {
5050
}
5151

5252
ext{
53-
nextflowVersion = '24.01.0-edge'
53+
nextflowVersion = '24.11.0-edge'
5454
}
5555

5656
dependencies {

0 commit comments

Comments
 (0)