Update Jenkinsfile

This commit is contained in:
JayChouteau 2020-03-16 15:24:33 -04:00 committed by GitHub
parent ad1752c622
commit 2c766ab8c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

31
Jenkinsfile vendored
View file

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