Browse Source

Try to fix Jenkinsfile issue

develop
LO Kam Tao Leo 3 years ago
parent
commit
49ca333a0f
  1. 8
      Jenkinsfile

8
Jenkinsfile vendored

@ -2,11 +2,11 @@ pipeline{
agent any agent any
tools{ tools{
maven 'Maven 3.8.6' maven '3.8.6'
jdk 'jdk18' jdk 'JDK 18'
} }
stages{ stages {
stage ('Initialize') { stage ('Initialize') {
steps { steps {
sh ''' sh '''
@ -16,7 +16,7 @@ pipeline{
} }
} }
stage('Build'){ stage('Build'){
step{ steps{
sh 'mvn -Dmaven.test.failure.ignore=true build' sh 'mvn -Dmaven.test.failure.ignore=true build'
} }
post{ post{

Loading…
Cancel
Save