Next Development Version
This commit is contained in:
parent
88311897e5
commit
aa2b96e4b8
|
@ -54,6 +54,19 @@ try {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
snapshots: {
|
||||||
|
stage('Snapshot Tests') {
|
||||||
|
node {
|
||||||
|
checkout scm
|
||||||
|
try {
|
||||||
|
sh "./gradlew clean test -PspringVersion='5.+' -PreactorVersion=Bismuth-BUILD-SNAPSHOT -PspringDataVersion=Kay-BUILD-SNAPSHOT --refresh-dependencies --no-daemon --stacktrace"
|
||||||
|
} catch(Exception e) {
|
||||||
|
currentBuild.result = 'FAILED: snapshots'
|
||||||
|
throw e
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
jdk9: {
|
jdk9: {
|
||||||
stage('JDK 9') {
|
stage('JDK 9') {
|
||||||
node {
|
node {
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
gaeVersion=1.9.63
|
gaeVersion=1.9.63
|
||||||
springBootVersion=2.0.1.RELEASE
|
springBootVersion=2.0.1.RELEASE
|
||||||
version=5.1.0.M1
|
version=5.1.0.BUILD-SNAPSHOT
|
||||||
|
|
Loading…
Reference in New Issue