File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/main/nextflow/cws/k8s Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff 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 ` .
2221To activate the plugin, add ` -plugins nf-cws ` to your ` nextflow ` call or add the following to your ` nextflow.config ` :
2322
2423```
Original file line number Diff line number Diff line change @@ -34,14 +34,15 @@ sourceSets {
3434}
3535
3636ext {
37- nextflowVersion = ' 25.01 .0-edge'
37+ nextflowVersion = ' 25.03 .0-edge'
3838}
3939
4040dependencies {
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"
Original file line number Diff line number Diff 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 )
3333class CWSK8sExecutor extends K8sExecutor implements ExtensionPoint {
3434
3535 @PackageScope SchedulerClient schedulerClient
You can’t perform that action at this time.
0 commit comments