Skip to content

Commit

Permalink
Build-specific Maven repo in Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mickaelistria committed Jul 6, 2018
1 parent 42706fe commit a93a690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Expand Up @@ -14,8 +14,8 @@ pipeline {
stage('Build') {
steps {
wrap([$class: 'Xvnc', useXauthority: true]) {
withEnv(["PATH+NODE=/shared/common/node-v7.10.0-linux-x64/bin", "PATH+DOTNET=/shared/common/dotnet-sdk-2.0.0-linux-x64"]) {
withMaven(maven: 'apache-maven-latest', jdk: 'jdk1.8.0-latest') {
withEnv(["PATH+DOTNET=/shared/common/dotnet-sdk-2.0.0-linux-x64"]) {
withMaven(maven: 'apache-maven-latest', jdk: 'jdk1.8.0-latest', mavenLocalRepo: '.repository') {
sh 'mvn clean verify -Dmaven.test.error.ignore=true -Dmaven.test.failure.ignore=true -PpackAndSign'
}
}
Expand Down

0 comments on commit a93a690

Please sign in to comment.