added test

This commit is contained in:
joeyabou 2020-03-15 17:03:12 -04:00
parent 8300f3185d
commit cf481b5ea9

24
Jenkinsfile vendored
View file

@ -1,10 +1,18 @@
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
'''
}
}
}
}