Skip to content
Snippets Groups Projects
Commit a6fc2725 authored by OZGCloud's avatar OZGCloud
Browse files

don't log transfer progress

parent 6b384220
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ pipeline { ...@@ -57,7 +57,7 @@ pipeline {
dir('ozgcloud-common-dependencies') { dir('ozgcloud-common-dependencies') {
configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) { configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) {
sh 'mvn --version' sh 'mvn --version'
sh 'mvn -s $MAVEN_SETTINGS clean install' sh 'mvn --no-transfer-progress -s $MAVEN_SETTINGS clean install'
} }
} }
} }
...@@ -71,7 +71,7 @@ pipeline { ...@@ -71,7 +71,7 @@ pipeline {
} }
configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) { configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) {
sh 'mvn --version' sh 'mvn --version'
sh 'mvn -s $MAVEN_SETTINGS clean install' sh 'mvn --no-transfer-progress -s $MAVEN_SETTINGS clean install'
script { script {
dir('ozgcloud-common-lib') { dir('ozgcloud-common-lib') {
...@@ -104,7 +104,7 @@ pipeline { ...@@ -104,7 +104,7 @@ pipeline {
FAILED_STAGE = env.STAGE_NAME FAILED_STAGE = env.STAGE_NAME
} }
configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) { configFileProvider([configFile(fileId: 'maven-settings', variable: 'MAVEN_SETTINGS')]) {
sh 'mvn -s $MAVEN_SETTINGS deploy' sh 'mvn --no-transfer-progress -s $MAVEN_SETTINGS deploy'
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment