Update Jenkinsfile

This commit is contained in:
Jimmy Lau 2020-03-12 00:21:51 -04:00 committed by GitHub
parent faa466c434
commit ae07ad6281
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
Jenkinsfile vendored
View file

@ -2,9 +2,25 @@ pipeline {
agent any agent any
stages { stages {
stage('Build') { stage('Build') {
steps {
bat './mvnw clean'
}
}
stage('Test'){
steps{
bat './mvnw test'
}
stage('Package'){
steps{ steps{
bat './mvnw package' bat './mvnw package'
} }
stage('Deploy'){
steps{
bat './mvnw deploy'
}
} }
} }
} }