Skip to content

Commit 512cdbe

Browse files
committed
Changed gradle build to properly build shadow jars
1 parent cdd448d commit 512cdbe

File tree

2 files changed

+19
-13
lines changed

2 files changed

+19
-13
lines changed

.idea/modules/FlowJoPluginDataDump_test.iml

+12-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

+7-1
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,30 @@ dependencies {
1515
}
1616

1717
task csvChannelJar(type: com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar) {
18+
classifier = 'all'
1819
from(sourceSets.main.output) {
1920
baseName = 'FlowJoPluginDataDumpCSVChannel'
20-
include "org/ramaciotti/utilities/csvchannel/**"
21+
include "org/ramaciotti/utilities/csvscale/**"
2122
}
23+
configurations = [project.configurations.compile]
2224
}
2325

2426
task csvScaleJar(type: com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar) {
27+
classifier = 'all'
2528
from(sourceSets.main.output) {
2629
baseName = 'FlowJoPluginDataDumpCSVScale'
2730
include "org/ramaciotti/utilities/csvscale/**"
2831
}
32+
configurations = [project.configurations.compile]
2933
}
3034

3135
task fcsJar(type: com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar) {
36+
classifier = 'all'
3237
from(sourceSets.main.output) {
3338
baseName = 'FlowJoPluginDataDumpFCS'
3439
include "org/ramaciotti/utilities/fcs/**"
3540
}
41+
configurations = [project.configurations.compile]
3642
}
3743

3844
task buildAll(dependsOn: ['csvChannelJar', 'csvScaleJar', 'fcsJar'])

0 commit comments

Comments
 (0)