Skip to content

Commit

Permalink
Merge pull request #85 from abdulrahim458/FISH-8589-update-jenkins
Browse files Browse the repository at this point in the history
remove checkout stage
  • Loading branch information
abdulrahim458 authored Oct 8, 2024
2 parents cd74998 + 77c0177 commit ab6729c
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 *#*#*#*#*#*#*#*#*#*#*#*#*#*#*#'
}
}
Expand Down

0 comments on commit ab6729c

Please sign in to comment.