V10Lift/Jenkinsfile

29 lines
588 B
Text
Raw Normal View History

2020-02-25 14:07:24 +00:00
pipeline {
2020-02-25 14:33:36 +00:00
agent any
tools {
maven 'Maven 3.3.9'
jdk 'jdk8'
2020-02-25 14:07:24 +00:00
}
2020-02-25 14:33:36 +00:00
stages {
stage ('Initialize') {
steps {
sh '''
echo "PATH = ${PATH}"
echo "M2_HOME = ${M2_HOME}"
'''
}
}
2020-02-25 14:07:24 +00:00
2020-02-25 14:33:36 +00:00
stage ('Build') {
steps {
sh 'mvn -Dmaven.test.failure.ignore=true install'
}
post {
success {
junit 'target/v10lift2/**/*.xml'
}
}
}
}
2020-02-25 14:10:44 +00:00
}