Update Jenkinsfile

This commit is contained in:
Firassawan 2020-03-09 15:48:20 -04:00 committed by GitHub
parent b777ed5bc7
commit 5397ee80cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
Jenkinsfile vendored
View file

@ -8,7 +8,17 @@ pipeline {
}
stage('Test') {
steps {
sh './gradlew check'
sh './mvnw package'
}
}
stage('Package') {
steps {
sh './mvnw package'
}
}
stage('Deploy') {
steps {
sh './mvnw package'
}
}
}