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 5631b18 commit 5e2e1feCopy full SHA for 5e2e1fe
build.gradle
@@ -171,6 +171,8 @@ task copyRunScripts(type: Copy) {
171
into "${projectDir}/approvalTest"
172
filter { line -> line.replaceAll('@VERSION@', productVersion) }
173
174
+ println("Copied with jar version ${productVersion} to approvalTest directory")
175
+
176
}
177
178
task prepareDistribution(type: Zip) {
@@ -198,7 +200,7 @@ task prepareDistribution(type: Zip) {
198
200
def approvalTest
199
201
approvalTest = tasks.register("approvalTest", Test) {
202
description 'Run approval test only'
- dependsOn copyRunScripts, prepareDistribution
203
+ dependsOn copyJarToBin, copyRunScripts
204
205
def output = -1
206
def runningOs = OS_NAME.toLowerCase()
0 commit comments