Remove Spring IO Checks

They are preventing updating to latest versions of libraries
This commit is contained in:
Rob Winch 2018-11-28 10:24:47 -06:00
parent d5949597b7
commit 5d49ac7e6c

15
Jenkinsfile vendored
View File

@ -38,21 +38,6 @@ try {
} }
} }
} }
},
springio: {
stage('Spring IO') {
node {
checkout scm
try {
sh "./gradlew clean springIoCheck -PplatformVersion=Cairo-BUILD-SNAPSHOT -PexcludeProjects='**/samples/**' --refresh-dependencies --no-daemon --stacktrace"
} catch(Exception e) {
currentBuild.result = 'FAILED: springio'
throw e
} finally {
junit '**/build/spring-io*-results/*.xml'
}
}
}
} }
if(currentBuild.result == 'SUCCESS') { if(currentBuild.result == 'SUCCESS') {