Files
jenkins-multibranch-project/Jenkinsfile
2017-06-18 01:23:38 +05:30

22 lines
432 B
Groovy

pipeline {
agent any
stages {
stage('Compile') {
steps {
sh 'mvn clean compile'
}
}
stage('Test'){
steps {
sh 'mvn install -Dmaven.test.failure.ignore=true'
junit 'reports/**/*.xml'
}
}
stage('Deploy') {
steps {
sh 'mvn deploy'
}
}
}
}