Skip to content

Commit f024d7f

Browse files
Use nf-k8s as dependency to work with nextflow >=25.03
Signed-off-by: Lehmann_Fabian <fabian.lehmann@informatik.hu-berlin.de>
1 parent d3a2cd8 commit f024d7f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ see the [scheduler repository](https://github.com/CommonWorkflowScheduler/Kubern
1717

1818
### How to use
1919

20-
To run Nextflow with this plugin, you need version >=`24.04.0` and <=`25.02.3-edge`
21-
(because Nextflow's Kubernetes refactor in `25.03.0-edge` is not supported *yet*).
20+
To run Nextflow with this plugin, you need version >=`24.04.0`.
2221
To activate the plugin, add `-plugins nf-cws` to your `nextflow` call or add the following to your `nextflow.config`:
2322

2423
```

plugins/nf-cws/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,15 @@ sourceSets {
3434
}
3535

3636
ext{
37-
nextflowVersion = '25.01.0-edge'
37+
nextflowVersion = '25.03.0-edge'
3838
}
3939

4040
dependencies {
4141
// This dependency is exported to consumers, that is to say found on their compile classpath.
4242
compileOnly "io.nextflow:nextflow:$nextflowVersion"
4343
compileOnly 'org.slf4j:slf4j-api:2.0.16'
4444
compileOnly 'org.pf4j:pf4j:3.12.0'
45+
implementation 'io.nextflow:nf-k8s:1.0.0'
4546

4647
// test configuration
4748
testImplementation "org.apache.groovy:groovy:4.0.26"

plugins/nf-cws/src/main/nextflow/cws/k8s/CWSK8sExecutor.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import java.nio.file.Paths
2929

3030
@Slf4j
3131
@CompileStatic
32-
@ServiceName('k8s')
32+
@ServiceName( value = 'k8s', important = true )
3333
class CWSK8sExecutor extends K8sExecutor implements ExtensionPoint {
3434

3535
@PackageScope SchedulerClient schedulerClient

0 commit comments

Comments
 (0)