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{
sh './mvnw compile'
}
}
stage("Test"){
steps{
sh './mvnw test'
}
}
stage("Install"){
steps{
sh './mvnw install'
}
}
stage("Deploy"){
steps{
sh './mvnw deploy'