Update Jenkinsfile

This commit is contained in:
khalilalturk 2020-03-14 02:34:01 -04:00 committed by GitHub
parent 41dbb02eea
commit 0e83027b08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

13
Jenkinsfile vendored
View file

@ -6,5 +6,16 @@ pipeline {
sh './mvnw package' sh './mvnw package'
} }
} }
} stage('test') {
steps {
sh './mvnw package'
}
}
stage('package') {
steps {
sh './mvnw package'
}
}
}
} }