Update Jenkinsfile

This commit is contained in:
n-sheikh 2020-03-30 18:01:45 -04:00 committed by GitHub
parent 63436b3d39
commit 9edb4ea41b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
Jenkinsfile vendored
View file

@ -1,9 +1,21 @@
pipeline{
agent any
stages {
stage("Build"){
stage("Compile"){
steps{
sh './mvnw package'
sh './mvnw compile'
}
stage("Test"){
steps{
sh './mvnw test'
}
stage("Install"){
steps{
sh './mvnw install'
}
stage("Deploy"){
steps{
sh './mvnw deploy'
}
}
}