From 7c6ff9de641084c8bce6364bd36fbf74eb542c0d Mon Sep 17 00:00:00 2001 From: John Blum Date: Thu, 13 Oct 2022 09:53:44 -0700 Subject: [PATCH] Fix syntax error in the Gradle command-line of the Jenkins CI build piplines execution when publishing and releasing artifacts. Resolves #623. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5d005718..d03da949 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -88,7 +88,7 @@ pipeline { "-Psigning.keyId=${SPRING_SIGNING_KEYID} " + "-Psigning.password=${SIGNING_PASSWORD} " + "-Psigning.secretKeyRingFile=${SIGNING_KEYRING_FILE} " + - '-x test - x integrationTest' + '-x test' } } }