Added Jenkinsfile

This commit is contained in:
landry333 2020-03-30 11:16:31 -04:00
parent 22d8c5bad6
commit 6fddad1b9f

23
Jenkinsfile vendored
View file

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