Update Jenkinsfile

This commit is contained in:
JayChouteau 2020-03-16 14:17:09 -04:00 committed by GitHub
parent 21cd92f406
commit ed1901230d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

29
Jenkinsfile vendored
View file

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