Added Jenkinsfile

This commit is contained in:
viveanban 2020-03-16 08:25:02 -04:00
parent 7c2a9ad38a
commit 5c3445c6ef

18
Jenkinsfile vendored
View file

@ -2,10 +2,28 @@ 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 {
echo '"Deployed"'
}
}
}
}