From 68d1691c79dbd1cf36fbbad8e31003ba5ecf0c07 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 15 May 2018 16:33:20 +0100 Subject: [PATCH] jenkins: only deploy ruleset and tile --- Jenkinsfile.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile.groovy b/Jenkinsfile.groovy index 9c3189e..aaa00c8 100644 --- a/Jenkinsfile.groovy +++ b/Jenkinsfile.groovy @@ -62,7 +62,7 @@ pipeline { when { expression { (env.GIT_BRANCH == 'master' && env.GIT_URL.startsWith('https://github.com')) } } steps { 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" } } }