Update Jenkinsfile

This commit is contained in:
Jonathan 2020-03-12 00:15:36 -04:00
parent d5a568eb43
commit c92bfef31c

16
Jenkinsfile vendored
View file

@ -2,9 +2,25 @@ pipeline {
agent any
stages {
stage('Build') {
steps {
sh './mvnw clean'
}
}
stage('Test') {
steps {
sh './mvnw test'
}
}
stage('Package') {
steps {
sh './mvnw package'
}
}
stage('Deploy') {
steps {
sh './mvnw deploy'
}
}
}
}