diff --git a/Jenkinsfile b/Jenkinsfile index aaabe9968..149b89c2b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,9 +2,9 @@ pipeline { agent any stages{ - stage('Hello'){ + stage('Git Clone'){ steps { - echo 'Hello World' + git url: 'https://github.cin/wodnr533/spring-petclinic.git', branch: 'main' } } }