mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:15:50 +00:00
adding jenkinsfile
This commit is contained in:
parent
df5c4bcb83
commit
46d5514bdf
1 changed files with 14 additions and 0 deletions
14
Jenkinsfile
vendored
Normal file
14
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
pipeline {
|
||||
agent any
|
||||
tools {
|
||||
maven 'maven-3.5.0'
|
||||
}
|
||||
stages {
|
||||
stage ('Build') {
|
||||
steps {
|
||||
git 'https://github.com/liatrio/spring-petclinic'
|
||||
sh 'mvn clean install'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue