Update Jenkinsfile

This commit is contained in:
Tarik Abou-Saddik 2020-04-15 20:08:43 -04:00 committed by GitHub
parent 4a7fc44c96
commit 972d5c8657
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

5
Jenkinsfile vendored
View file

@ -7,22 +7,25 @@ pipeline {
stage('Build') {
steps {
echo 'Building'
sh './mvnw package'
sh './mvnw compile'
}
}
stage('Test') {
steps {
echo 'Testing'
sh './mvnw test'
}
}
stage('Package') {
steps {
echo 'Package'
sh './mvnw package'
}
}
stage('Deploy') {
steps {
echo 'Deploying'
sh './mvnw deploy'
}
}
}