fix compact 3 stage syntax

Signed-off-by: olivier lamy <olamy@webtide.com>
This commit is contained in:
olivier lamy 2018-02-01 18:15:59 +10:00
parent 3fed7205fd
commit 6b56136163
1 changed files with 5 additions and 4 deletions

9
Jenkinsfile vendored
View File

@ -112,11 +112,12 @@ def getFullBuild(jdk) {
try
{
stage 'Compact3'
stage ('Compact3') {
dir("aggregates/jetty-all-compact3") {
withEnv(mvnEnv) {
sh "mvn -V -B -Pcompact3 clean install"
dir("aggregates/jetty-all-compact3") {
withEnv(mvnEnv) {
sh "mvn -V -B -Pcompact3 clean install"
}
}
}
} catch(Exception e) {