Skip to content

Commit 066fb2b

Browse files
committed
Add back commands to packaging
Closes #4
1 parent 4065ae7 commit 066fb2b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ task pluginDescriptor(type: Copy) {
3232
into 'build/libs'
3333
}
3434

35+
task copyCommands(type: Copy) {
36+
into 'build/libs/bin'
37+
from 'src/main/bin'
38+
}
39+
3540
task copyDependencies(type: Copy) {
3641
into 'build/libs'
3742
from configurations.default
@@ -77,8 +82,9 @@ task integrationTest(type: Test) {
7782
afterSuite testReporter
7883
}
7984

80-
packageDistribution.dependsOn 'downloadModels'
85+
test.dependsOn 'downloadModels'
8186
packageDistribution.dependsOn 'pluginDescriptor'
87+
packageDistribution.dependsOn 'copyCommands'
8288
packageDistribution.dependsOn 'copyDependencies'
8389
packageDistribution.dependsOn 'jar'
8490
builderDockerImage.dependsOn 'packageDistribution'

0 commit comments

Comments
 (0)