Update Jenkinsfile

This commit is contained in:
Muneeb Nezameddin 2020-03-16 02:35:06 -04:00 committed by GitHub
parent c95c02e955
commit a08eef23ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
Jenkinsfile vendored
View file

@ -3,7 +3,22 @@ pipeline {
stages {
stage('Build') {
steps {
bat './mvnw package'
bat './mvnw compile'
}
}
stage('Test')
steps {
bat './mvnw test'
}
}
stage('Package')
steps {
bat './mvnw package'
}
}
stage('Deploy')
steps {
bat './mvnw deploy'
}
}
}