Skip to content
This repository was archived by the owner on Sep 1, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading