Update Jenkinsfile

This commit is contained in:
Jimmy Lau 2020-03-12 00:24:08 -04:00 committed by GitHub
parent 7271a4726a
commit 81b8bf33fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

7
Jenkinsfile vendored
View file

@ -11,17 +11,18 @@ pipeline {
steps{ steps{
bat './mvnw test' bat './mvnw test'
} }
}
stage('Package'){ stage('Package'){
steps{ steps{
bat './mvnw package' bat './mvnw package'
} }
}
stage('Deploy'){ stage('Deploy'){
steps{ steps{
bat './mvnw deploy' bat './mvnw deploy'
} }
}
}
} }
} }
}