Fix syntax errors in jenkins file

This commit is contained in:
n-sheikh 2020-03-30 18:12:23 -04:00 committed by GitHub
parent 3e272da4fa
commit 07259d1582
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

3
Jenkinsfile vendored
View file

@ -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'