V10Lift/Jenkinsfile

30 lines
589 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 {
2020-02-25 14:38:10 +00:00
maven 'Maven 3.6.3'
2020-02-25 14:33:36 +00:00
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
}
2020-02-25 14:40:36 +00:00