diff --git a/Jenkinsfile b/Jenkinsfile index 47eeba7..3729daa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,13 +4,15 @@ pipeline{ maven 'mymaven' } - agent any + agent { + label 'linux_node' + } stages{ stage('Checkout the code'){ steps{ echo 'cloning the repo' - git 'https://github.com/Sonal0409/DevOpsClassCodes.git' + git 'https://github.com/Saad4509/DevOpsCodeDemo.git' } } stage('Compile'){ diff --git a/README.md b/README.md index b21a7e5..8313a0d 100644 --- a/README.md +++ b/README.md @@ -66,3 +66,4 @@ To use the built in server adapters of Eclipse, instead of doing "Run As -> Mave - *Do not use the suggested J2EE Preview server* as it is outdated, deprecated and does not support Servlet 3, which is required for this applications *** End of documentation +