Update Jenkinsfile

This commit is contained in:
KevinHTrinh 2020-03-16 00:56:34 -04:00 committed by GitHub
parent c89ba2ffc5
commit 58e8a1a3c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
Jenkinsfile vendored
View file

@ -1,10 +1,28 @@
pipeline {
agent any
stages {
stage('Build') {
stage('Build') {
steps {
sh './mvnw package'
}
}
}
stage('Test') {
steps {
sh 'mvn test'
}
}
}
stage('Package') {
steps {
sh 'mvn package'
}
}
}
stage('Deploy') {
steps {
sh 'mvn deploy'
}
}
}
}