diff options
author | Martin Stockhammer <martin_s@apache.org> | 2021-08-29 11:38:19 +0200 |
---|---|---|
committer | Martin Stockhammer <martin_s@apache.org> | 2021-08-29 11:38:19 +0200 |
commit | 699920cb8958b4436cbb16d27616d30ca98ba59b (patch) | |
tree | 9194b522391c6d4dad47d74b0a22b23fca3dc032 /Jenkinsfile | |
parent | 502280dbbdc9ff31183183400b71bb98e770789f (diff) | |
download | archiva-699920cb8958b4436cbb16d27616d30ca98ba59b.tar.gz archiva-699920cb8958b4436cbb16d27616d30ca98ba59b.zip |
Fixing timeout value and adding thread output to maven build
Diffstat (limited to 'Jenkinsfile')
-rw-r--r-- | Jenkinsfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 56dc1c6a6..3f937f01d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -106,7 +106,7 @@ pipeline { // -Dmaven.compiler.fork=true: Do compile in a separate forked process // -Dmaven.test.failure.ignore=true: Do not stop, if some tests fail // -Pci-build: Profile for CI-Server - sh "mvn ${cmdLine} -B -U -e -fae -Dmaven.compiler.fork=true -Pci-build -T${THREADS}" + sh "mvn ${cmdLine} -B -U -e -fae -Dorg.slf4j.simpleLogger.showThreadName=true -Dmaven.compiler.fork=true -Pci-build -T${THREADS}" } } } @@ -149,7 +149,7 @@ pipeline { { sh "chmod 755 ./src/ci/scripts/prepareWorkspace.sh" sh "./src/ci/scripts/prepareWorkspace.sh" - sh "mvn clean install -U -B -e -fae -Dmaven.compiler.fork=true -Pci-build -T${THREADS}" + sh "mvn clean install -U -B -e -fae -Dorg.slf4j.simpleLogger.showThreadName=true -Dmaven.compiler.fork=true -Pci-build -T${THREADS}" } } } |