Skip to content

Commit

Permalink
[releng] Enable --batch-mode for maven
Browse files Browse the repository at this point in the history
To get rid of the download progress spam during builds

Signed-off-by: Felix Dorner <[email protected]>
  • Loading branch information
felixdo committed Jun 8, 2020
1 parent 6f7385e commit c457678
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pipeline {
currentBuild.description = BUILD_KEY

sh 'env'
sh 'mvn clean verify -f releng/plugins/org.polarsys.capella.targets/pom.xml'
sh 'mvn --batch-mode clean verify -f releng/plugins/org.polarsys.capella.targets/pom.xml'
}
}
}
Expand All @@ -35,7 +35,7 @@ pipeline {
script {
def customParams = github.isPullRequest() ? '-DSKIP_SONAR=true' : '-Psign'

sh "mvn -Djacoco.skip=true -DjavaDocPhase=none -Pfull ${customParams} clean package -f pom.xml"
sh "mvn --batch-mode -Djacoco.skip=true -DjavaDocPhase=none -Pfull ${customParams} clean package -f pom.xml"
}
}
}
Expand Down

0 comments on commit c457678

Please sign in to comment.