Update Jenkinsfile

This commit is contained in:
KevinHTrinh 2020-03-16 01:09:16 -04:00 committed by GitHub
parent ef2aa48b05
commit 290d5b50d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

3
Jenkinsfile vendored
View file

@ -1,9 +1,10 @@
pipeline { pipeline {
agent any agent any
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
sh './mvnw package' sh 'mvn clean compile'
} }
} }
stage('Test') { stage('Test') {