mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-20 14:55:50 +00:00
Merge 0e5afd6937
into 91328af12d
This commit is contained in:
commit
0dc982934f
1 changed files with 11 additions and 0 deletions
11
Jenkinsfile
vendored
Normal file
11
Jenkinsfile
vendored
Normal 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
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue