spring-petclinic/Jenkinsfile
Jesse Houldsworth fa42c8b1e4 jenmkinsfile
2025-03-25 17:02:13 -07:00

74 lines
1.9 KiB
Groovy

pipeline {
agent any
tools {
maven 'maven-3'
}
environment {
JFROG_CLI_BUILD_NAME = "spring-petclinic"
JFROG_CLI_BUILD_NUMBER = "${BUILD_ID}"
ARTIFACTORY_URL = "http://artifactory.artifactory.svc.cluster.local:8081/artifactory"
}
stages {
stage('Download JFrog CLI') {
steps {
// Download a specific ARM64 version of the jf binary
sh '''
curl -fL https://releases.jfrog.io/artifactory/jfrog-cli/v2-jf/2.42.2/jfrog-cli-linux-arm64/jf -o jf
chmod +x jf
'''
}
}
stage('Configure JFrog CLI') {
steps {
withCredentials([usernamePassword(credentialsId: 'jfrog-platform-creds', usernameVariable: 'ARTIFACTORY_USER', passwordVariable: 'ARTIFACTORY_PASSWORD')]) {
sh '''
./jf c add petclinic \
--url=${ARTIFACTORY_URL} \
--user=$ARTIFACTORY_USER \
--password=$ARTIFACTORY_PASSWORD \
--interactive=false
'''
}
}
}
stage('Validate Connection') {
steps {
sh './jf c use petclinic'
sh './jf rt ping'
}
}
stage('Build Maven') {
steps {
sh 'chmod +x mvnw'
sh '''
./jf mvnc --global \
--repo-resolve-releases=petclinic-maven-dev-virtual \
--repo-resolve-snapshots=petclinic-maven-dev-virtual \
--repo-deploy-releases=petclinic-maven-dev-local \
--repo-deploy-snapshots=petclinic-maven-dev-local
'''
sh './jf mvn clean deploy -DskipTests -Dcheckstyle.skip=true'
}
}
stage('Publish Build Info') {
steps {
sh './jf rt build-collect-env'
sh './jf rt build-add-git'
sh './jf rt build-publish'
}
}
}
post {
always {
echo "Build complete: ${env.JFROG_CLI_BUILD_NAME} #${env.BUILD_NUMBER}"
}
}
}