diff --git a/basic-spring-boot/Jenkinsfile b/basic-spring-boot/Jenkinsfile index 8490dcf9..1f884675 100644 --- a/basic-spring-boot/Jenkinsfile +++ b/basic-spring-boot/Jenkinsfile @@ -26,11 +26,11 @@ pipeline { // Checkout source code // This is required as Pipeline code is originally checkedout to // Jenkins Master but this will also pull this same code to this slave - stage('SCM Checkout') { + stage('Git Checkout') { steps { // Turn off Git's SSL cert check, uncomment if needed // sh 'git config --global http.sslVerify false' - checkout scm + git url: "${APPLICATION_SOURCE_REPO}" } }