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

Commit 4f07101

Browse files
authored
Update to Java 17 (#20)
- update toolchain to Java 21 - bump nextflow to 24.11.0-edge Signed-off-by: Tom Sellman <[email protected]>
1 parent f686fbc commit 4f07101

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
java_version: [11, 21]
20+
java_version: [17, 21]
2121

2222
steps:
2323
- name: Environment

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 {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Manifest-Version: 1.0
22
Plugin-Id: nf-hello
3-
Plugin-Version: 0.5.0
3+
Plugin-Version: 0.6.0
44
Plugin-Class: nextflow.hello.HelloPlugin
55
Plugin-Provider: nextflow
6-
Plugin-Requires: >=24.01.0-edge
6+
Plugin-Requires: >=24.11.0-edge

0 commit comments

Comments
 (0)