Added Jenkinsfile

This commit is contained in:
Neeham Khalid 2020-03-12 11:17:53 -04:00
parent 604cecea00
commit bf462b2900

27
Jenkinsfile vendored
View file

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