diff --git a/Jenkinsfile.groovy b/Jenkinsfile.groovy index af48017..baea78b 100644 --- a/Jenkinsfile.groovy +++ b/Jenkinsfile.groovy @@ -48,7 +48,7 @@ pipeline { stage('Build Java Next') { steps { withMaven(maven: 'maven', jdk: 'JDK Next') { - sh "${mvn} clean install -Djava.version=9" + sh "${mvn} clean install -Djava.version=9 -Dmaven-enforcer-plugin.version=3.0.0-M1" //TODO: check that git status is still clean - i.e. builder didn't update any rulesets } } @@ -56,7 +56,6 @@ pipeline { stage('Build Java LTS') { steps { withMaven(maven: 'maven', jdk: 'JDK LTS') { - sh "${mvn} clean install" //TODO: check that git status is still clean - i.e. builder didn't update any rulesets }