We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4065ae7 commit 066fb2bCopy full SHA for 066fb2b
build.gradle
@@ -32,6 +32,11 @@ task pluginDescriptor(type: Copy) {
32
into 'build/libs'
33
}
34
35
+task copyCommands(type: Copy) {
36
+ into 'build/libs/bin'
37
+ from 'src/main/bin'
38
+}
39
+
40
task copyDependencies(type: Copy) {
41
42
from configurations.default
@@ -77,8 +82,9 @@ task integrationTest(type: Test) {
77
82
afterSuite testReporter
78
83
79
84
80
-packageDistribution.dependsOn 'downloadModels'
85
+test.dependsOn 'downloadModels'
81
86
packageDistribution.dependsOn 'pluginDescriptor'
87
+packageDistribution.dependsOn 'copyCommands'
88
packageDistribution.dependsOn 'copyDependencies'
89
packageDistribution.dependsOn 'jar'
90
builderDockerImage.dependsOn 'packageDistribution'
0 commit comments