diff options
author | Olivier Lamy <olamy@apache.org> | 2022-04-11 15:31:29 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-11 15:31:29 +1000 |
commit | 5bd980a7d5e5488d115ef7826ac02479c27d5932 (patch) | |
tree | 9c969c370c222a33103f6e1cd627d63e0e406217 | |
parent | 6f4b08e4ad279dcf77faa8034f3e3983e3afde32 (diff) | |
download | archiva-5bd980a7d5e5488d115ef7826ac02479c27d5932.tar.gz archiva-5bd980a7d5e5488d115ef7826ac02479c27d5932.zip |
fix syntax (#74)
Signed-off-by: Olivier Lamy <olamy@apache.org>
-rw-r--r-- | Jenkinsfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index eaebba1bd..2bcc32323 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 -Dorg.slf4j.simpleLogger.showThreadName=true -Pci-build -T${THREADS}" + sh "mvn ${cmdLine} -B -U -e -fae -Dorg.slf4j.simpleLogger.showThreadName=true -Pci-build -T${params.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 -Dorg.slf4j.simpleLogger.showThreadName=true -Pci-build -T${THREADS}" + sh "mvn clean install -U -B -e -fae -Dorg.slf4j.simpleLogger.showThreadName=true -Pci-build -T${params.THREADS}" } } } |