Added package/deploy to jekins

This commit is contained in:
GD 2020-03-11 18:24:49 -04:00
parent 76081ff1eb
commit bc842c5b57

14
Jenkinsfile vendored
View file

@ -13,6 +13,20 @@ pipeline {
sh'./mvnw test' sh'./mvnw test'
} }
} }
stage('Package')
{
steps{
sh'./mvnw package'
}
}
stage('Deploy')
{
steps{
sh'./mvnw deploy'
}
}
} }
} }