Skip to content

Commit 735b8d9

Browse files
committed
Fix packing all including wave
Signed-off-by: Paolo Di Tommaso <[email protected]>
1 parent 9d9e275 commit 735b8d9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packing.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ configurations {
99
azure.extendsFrom defaultCfg
1010
legacy.extendsFrom defaultCfg
1111
tower.extendsFrom defaultCfg
12+
wave.extendsFrom defaultCfg
1213
}
1314

1415
dependencies {
1516
api project(':nextflow')
1617
// include Ivy at runtime in order to have Grape @Grab work correctly
1718
defaultCfg "org.apache.ivy:ivy:2.5.1"
18-
// default cfg = runtime + httpfs + amazon + tower client
19+
// default cfg = runtime + httpfs + amazon + tower client + wave client
1920
defaultCfg project(':nf-httpfs')
2021
// Capsule manages the fat jar building process
2122
capsule 'io.nextflow:capsule:1.1.1'
@@ -26,6 +27,7 @@ dependencies {
2627
amazon project(':plugins:nf-amazon')
2728
azure project(':plugins:nf-azure')
2829
tower project(':plugins:nf-tower')
30+
wave project(':plugins:nf-wave')
2931
}
3032

3133

@@ -134,7 +136,7 @@ task packAll(type: Jar) {
134136
archiveName = "nextflow-${version}-all.jar"
135137

136138
from jar // embed our application jar
137-
from (configurations.amazon + configurations.google + configurations.tower)
139+
from (configurations.amazon + configurations.google + configurations.tower + configurations.wave)
138140
from (configurations.capsule.collect { zipTree(it) })
139141
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
140142

0 commit comments

Comments
 (0)