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 6e6e30d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java_version: [11, 21]
java_version: [17, 21]

steps:
- name: Environment
Expand Down
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
4 changes: 2 additions & 2 deletions plugins/nf-hello/src/resources/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
Plugin-Id: nf-hello
Plugin-Version: 0.5.0
Plugin-Version: 0.6.0
Plugin-Class: nextflow.hello.HelloPlugin
Plugin-Provider: nextflow
Plugin-Requires: >=24.01.0-edge
Plugin-Requires: >=24.11.0-edge

0 comments on commit 6e6e30d

Please sign in to comment.