[jenkins] Remove the Build Java 9 step

This commit is contained in:
Paul Campbell 2018-10-07 16:34:51 +01:00
parent 708f6ee3cf
commit beaef961d6

View file

@ -70,14 +70,6 @@ pipeline {
}
}
}
stage('Build Java 9') {
when { expression { dependenciesSupportJDK >= 9 } }
steps {
withMaven(maven: 'maven', jdk: 'JDK 9') {
sh "${mvn} clean --activate-profiles verify verify -Djava.version=9"
}
}
}
stage('Build Java 10') {
when { expression { dependenciesSupportJDK >= 10 } }
steps {