Browse Source

Adding jenkinsfile

develop
LO Kam Tao Leo 3 years ago
parent
commit
cce091734b
  1. 19
      Jenkinsfile

19
Jenkinsfile vendored

@ -0,0 +1,19 @@
pipeline{
agent any
tools{
maven 'Maven 3.8.6'
jdk 'jdk18'
}
stages{
stage('Build'){
sh 'mvn -Dmaven.test.failure.ignore=true build'
}
post{
success{
junit 'target/surefire-reports/**/*.xml'
}
}
}
}
Loading…
Cancel
Save