jenkins: only deploy ruleset and tile

This commit is contained in:
Paul Campbell 2018-05-15 16:33:20 +01:00
parent 8f6a8201c4
commit 68d1691c79

View file

@ -62,7 +62,7 @@ pipeline {
when { expression { (env.GIT_BRANCH == 'master' && env.GIT_URL.startsWith('https://github.com')) } } when { expression { (env.GIT_BRANCH == 'master' && env.GIT_URL.startsWith('https://github.com')) } }
steps { steps {
withMaven(maven: 'maven', jdk: 'JDK LTS') { withMaven(maven: 'maven', jdk: 'JDK LTS') {
sh "${mvn} deploy --activate-profiles release -DskipTests=true" sh "${mvn} deploy -pl ruleset,tile --activate-profiles release -DskipTests=true"
} }
} }
} }