Skip to content

Commit

Permalink
Update to Java 17
Browse files Browse the repository at this point in the history
- update toolchain to Java 21
- bump nextflow to 24.11.0-edge

Signed-off-by: Tom Sellman <[email protected]>
  • Loading branch information
tom-seqera committed Dec 5, 2024
1 parent f686fbc commit a457cbc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ repositories {

java {
toolchain {
languageVersion = JavaLanguageVersion.of(19)
languageVersion = JavaLanguageVersion.of(21)
}
}

compileJava {
options.release.set(11)
options.release.set(17)
}

tasks.withType(GroovyCompile) {
sourceCompatibility = '11'
targetCompatibility = '11'
sourceCompatibility = '17'
targetCompatibility = '17'
}

tasks.withType(Test) {
Expand Down
2 changes: 1 addition & 1 deletion plugins/nf-hello/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ sourceSets {
}

ext{
nextflowVersion = '24.01.0-edge'
nextflowVersion = '24.11.0-edge'
}

dependencies {
Expand Down

0 comments on commit a457cbc

Please sign in to comment.