This commit is contained in:
Gitprasannag17 2024-09-01 11:45:39 +00:00 committed by GitHub
commit 0dc982934f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

11
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,11 @@
node('build-jdk17-mvn3.9.4_1') {
stage('git') {
git 'https://github.com/spring-projects/spring-petclinic.git'
}
stage('build') {
sh 'mvn clean package'
}
stage('archive') {
archiveArtifacts artifacts: 'target/*.jar', followSymlinks: false
}
}