Skip to content

Commit ab6729c

Browse files
Merge pull request #85 from abdulrahim458/FISH-8589-update-jenkins
remove checkout stage
2 parents cd74998 + 77c0177 commit ab6729c

1 file changed

Lines changed: 1 addition & 14 deletions

File tree

Jenkinsfile

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,11 @@ pipeline {
1616
}
1717
stages {
1818

19-
stage('Checkout Master') {
20-
steps {
21-
script {
22-
checkout changelog: false, poll: true, scm: [$class: 'GitSCM',
23-
branches: [[name: "master"]],
24-
doGenerateSubmoduleConfigurations: false,
25-
extensions: [],
26-
submoduleCfg: [],
27-
userRemoteConfigs: [[credentialsId: 'payara-devops-github-personal-access-token-as-username-password', url:"https://github.com/payara/ecosystem-eclipse-plugin.git"]]]
28-
}
29-
}
30-
}
3119
stage('Build') {
3220
steps {
3321
script {
3422
echo '*#*#*#*#*#*#*#*#*#*#*#*# Building SRC *#*#*#*#*#*#*#*#*#*#*#*#*#*#*#'
35-
sh """mvn -B -V -ff -e clean install --strict-checksums \
36-
-Djavadoc.skip -Dsource.skip"""
23+
sh """mvn clean install"""
3724
echo '*#*#*#*#*#*#*#*#*#*#*#*# Built SRC *#*#*#*#*#*#*#*#*#*#*#*#*#*#*#'
3825
}
3926
}

0 commit comments

Comments
 (0)