diff --git a/Jenkinsfile b/jenkinsfile similarity index 74% rename from Jenkinsfile rename to jenkinsfile index 4a67b06..18f13aa 100644 --- a/Jenkinsfile +++ b/jenkinsfile @@ -3,27 +3,27 @@ pipeline{ stages{ stage('checkout the code from github'){ steps{ - git url: 'https://github.com/akshu20791/Banking-java-project/' + git url: 'https://github.com/aemallaanusha/Banking-java-project/' echo 'github url checkout' } } - stage('codecompile with akshat'){ + stage('codecompile with aemallaanusha'){ steps{ echo 'starting compiling' sh 'mvn compile' } } - stage('codetesting with akshat'){ + stage('codetesting with aemallaanusha'){ steps{ sh 'mvn test' } } - stage('qa with akshat'){ + stage('qa with aemallaanusha'){ steps{ sh 'mvn checkstyle:checkstyle' } } - stage('package with akshat'){ + stage('package with aemallaanusha'){ steps{ sh 'mvn package' }