Skip to content

Commit

Permalink
"mvn -ntp" to avoid download messages polluting the log
Browse files Browse the repository at this point in the history
  • Loading branch information
Bananeweizen authored and mickaelistria committed Jan 3, 2023
1 parent 9d3d442 commit d5cbaff
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,16 @@ spec:
dir ('eclipse.platform.swt.binaries') {
sh '''
/opt/tools/apache-maven/latest/bin/mvn install \
--batch-mode -Pbuild-individual-bundles -DforceContextQualifier=zzz -Dnative=gtk.linux.x86_64 \
--batch-mode --no-transfer-progress \
-Pbuild-individual-bundles -DforceContextQualifier=zzz -Dnative=gtk.linux.x86_64 \
-Dcompare-version-with-baselines.skip=true -Dmaven.compiler.failOnWarning=true
'''
}
dir ('eclipse.platform.swt') {
sh '''
/opt/tools/apache-maven/latest/bin/mvn clean verify \
--batch-mode -Pbuild-individual-bundles -DcheckAllWS=true -DforkCount=0 \
--batch-mode --no-transfer-progress \
-Pbuild-individual-bundles -DcheckAllWS=true -DforkCount=0 \
-Dcompare-version-with-baselines.skip=false -Dmaven.compiler.failOnWarning=true \
-Dmaven.test.failure.ignore=true -Dmaven.test.error.ignore=true
'''
Expand Down

0 comments on commit d5cbaff

Please sign in to comment.