1
0
mirror of synced 2026-08-06 10:18:52 +00:00

Jenkinsfile add --refresh-dependencies JDK specific builds

This commit is contained in:
Rob Winch
2018-07-13 21:17:23 -05:00
parent d9d9879909
commit 2856f93140
Vendored
+3 -3
View File
@@ -58,7 +58,7 @@ try {
checkout scm
try {
withEnv(["JAVA_HOME=${ tool 'jdk9' }"]) {
sh "./gradlew clean test --no-daemon --stacktrace"
sh "./gradlew clean test --refresh-dependencies --no-daemon --stacktrace"
}
} catch(Exception e) {
currentBuild.result = 'FAILED: jdk9'
@@ -73,7 +73,7 @@ try {
checkout scm
try {
withEnv(["JAVA_HOME=${ tool 'jdk10' }"]) {
sh "./gradlew clean test --no-daemon --stacktrace"
sh "./gradlew clean test --refresh-dependencies --no-daemon --stacktrace"
}
} catch(Exception e) {
currentBuild.result = 'FAILED: jdk10'
@@ -88,7 +88,7 @@ try {
checkout scm
try {
withEnv(["JAVA_HOME=${ tool 'jdk11' }"]) {
sh "./gradlew clean test --no-daemon --stacktrace"
sh "./gradlew clean test --refresh-dependencies --no-daemon --stacktrace"
}
} catch(Exception e) {
currentBuild.result = 'FAILED: jdk11'