Skip to content

Commit

Permalink
adjust maven params
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Siberski committed Nov 16, 2017
1 parent 3dcb967 commit ce2fde4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Expand Up @@ -12,7 +12,7 @@
timestamps() {
node() {
def mvnHome = tool 'apache-maven-3.0.5'
def mvnParams = '--batch-mode --update-snapshots -fae -Dmaven.repo.local=xpect-local-maven-repository -DtestOnly=false'
def mvnParams = '-fae -Dmaven.repo.local=xpect-local-maven-repository -DtestOnly=false'
timeout(time: 1, unit: 'HOURS') {
stage('prepare workspace') {
step([$class: 'WsCleanup'])
Expand All @@ -33,7 +33,7 @@ timestamps() {
}

stage('compile with Eclipse Luna and Xtext 2.9.2') {
sh "${mvnHome}/bin/mvn -P!tests -Dtarget-platform=eclipse_4_4_2-xtext_2_9_2 ${mvnParams} clean install"
sh "${mvnHome}/bin/mvn -P!tests -Dtarget-platform=eclipse_4_4_2-xtext_2_9_2 ${mvnParams} --batch-mode --update-snapshots clean install"
archive 'org.eclipse.xpect.releng/p2-repository/target/repository/**/*.*'
}

Expand Down

0 comments on commit ce2fde4

Please sign in to comment.