diff --git a/Jenkinsfile b/Jenkinsfile index f4802fb..7d02d9c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,24 +16,11 @@ pipeline { } stages { - stage('Checkout Master') { - steps { - script { - checkout changelog: false, poll: true, scm: [$class: 'GitSCM', - branches: [[name: "master"]], - doGenerateSubmoduleConfigurations: false, - extensions: [], - submoduleCfg: [], - userRemoteConfigs: [[credentialsId: 'payara-devops-github-personal-access-token-as-username-password', url:"https://github.com/payara/ecosystem-eclipse-plugin.git"]]] - } - } - } stage('Build') { steps { script { echo '*#*#*#*#*#*#*#*#*#*#*#*# Building SRC *#*#*#*#*#*#*#*#*#*#*#*#*#*#*#' - sh """mvn -B -V -ff -e clean install --strict-checksums \ - -Djavadoc.skip -Dsource.skip""" + sh """mvn clean install""" echo '*#*#*#*#*#*#*#*#*#*#*#*# Built SRC *#*#*#*#*#*#*#*#*#*#*#*#*#*#*#' } }