jenmkinsfile

This commit is contained in:
Jesse Houldsworth 2025-03-27 15:09:16 -07:00
parent cff156cdca
commit eae14dc236

5
Jenkinsfile vendored
View file

@ -10,7 +10,6 @@ pipeline {
JFROG_CREDENTIALS_ID = 'jfrog-saas' JFROG_CREDENTIALS_ID = 'jfrog-saas'
JFROG_CLI_BUILD_NAME = "spring-petclinic" JFROG_CLI_BUILD_NAME = "spring-petclinic"
JFROG_CLI_BUILD_NUMBER = "${BUILD_ID}" JFROG_CLI_BUILD_NUMBER = "${BUILD_ID}"
// Downloaded JFrog CLI path
JF = "${WORKSPACE}/jfrog" JF = "${WORKSPACE}/jfrog"
} }
stages { stages {
@ -57,9 +56,9 @@ pipeline {
stage('Xray Scan') { stage('Xray Scan') {
steps { steps {
// Changed to modern syntax: jf x s // Use the Artifactory command to scan the build with Xray:
sh """ sh """
${JF} x s ${JFROG_CLI_BUILD_NAME} ${JFROG_CLI_BUILD_NUMBER} \\ ${JF} rt build-scan ${JFROG_CLI_BUILD_NAME} ${JFROG_CLI_BUILD_NUMBER} \\
--fail-on-severity=High --fail-on-severity=High
""" """
} }