diff --git a/Jenkinsfile b/Jenkinsfile index 990ab3c..0b439b5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,4 +1,4 @@ -def repo = 'git@github.com:Internet2/grouper.git' +def repo = 'https://github.com/Internet2/grouper.git' def jdk_id = 'Corretto-JDK8' def maven_id = 'Maven-3.8.4' def gpg_cred_id = 'grouper-gpg-key' @@ -24,8 +24,9 @@ node('docker') { $class: 'GitSCM', branches: [[name: grouper_src_branch]], extensions: [ - [$class: 'LocalBranch'], [$class: 'WipeWorkspace'], - [$class: 'CloneOption', depth: 1, noTags: false, reference: '', shallow: true], + [$class: 'LocalBranch'], + [$class: 'WipeWorkspace'], + [$class: 'CloneOption', noTags: false, shallow: true], ], userRemoteConfigs: [[url: repo]] ]