mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 23:05:50 +00:00
Fix syntax errors in jenkins file
This commit is contained in:
parent
3e272da4fa
commit
07259d1582
1 changed files with 3 additions and 0 deletions
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
|
@ -5,14 +5,17 @@ pipeline{
|
||||||
steps{
|
steps{
|
||||||
sh './mvnw compile'
|
sh './mvnw compile'
|
||||||
}
|
}
|
||||||
|
}
|
||||||
stage("Test"){
|
stage("Test"){
|
||||||
steps{
|
steps{
|
||||||
sh './mvnw test'
|
sh './mvnw test'
|
||||||
}
|
}
|
||||||
|
}
|
||||||
stage("Install"){
|
stage("Install"){
|
||||||
steps{
|
steps{
|
||||||
sh './mvnw install'
|
sh './mvnw install'
|
||||||
}
|
}
|
||||||
|
}
|
||||||
stage("Deploy"){
|
stage("Deploy"){
|
||||||
steps{
|
steps{
|
||||||
sh './mvnw deploy'
|
sh './mvnw deploy'
|
||||||
|
|
Loading…
Reference in a new issue