Browse Source

Try to fix Jenkinsfile issue

develop
LO Kam Tao Leo 3 years ago
parent
commit
2d71ecd71d
  1. 10
      Jenkinsfile

10
Jenkinsfile vendored

@ -7,7 +7,16 @@ pipeline{
}
stages{
stage ('Initialize') {
steps {
sh '''
echo "PATH = ${PATH}"
echo "M2_HOME = ${M2_HOME}"
'''
}
}
stage('Build'){
step{
sh 'mvn -Dmaven.test.failure.ignore=true build'
}
post{
@ -17,3 +26,4 @@ pipeline{
}
}
}
}
Loading…
Cancel
Save