diff --git a/Jenkinsfile-Sep23-scripted b/Jenkinsfile-Sep23-scripted index 730cc65c96..0afb366cf7 100644 --- a/Jenkinsfile-Sep23-scripted +++ b/Jenkinsfile-Sep23-scripted @@ -15,24 +15,24 @@ node{ //edit pom.xml propertiesTAG with SonarQube server details } stage('4.UploadArtifacts'){ - sh "${mavenHome}/bin/mvn deploy" + //sh "${mavenHome}/bin/mvn deploy" //edit pom.xml distributionManagement TAG with repository details //edit settings.xml with nexus-user login credentials } stage('5.Deploy2UAT'){ //use deploy-to-container plugin via pipeline syntax - deploy adapters: [tomcat9(credentialsId: 'tomcat-credentials', path: '', url: 'http://34.219.51.216:8177/')], contextPath: null, war: 'target/*war' + //deploy adapters: [tomcat9(credentialsId: 'tomcat-credentials', path: '', url: 'http://34.219.51.216:8177/')], contextPath: null, war: 'target/*war' //Deploying [/var/lib/jenkins/workspace/tesla-app-pipeline/target/tesla.war] } stage('6.6ManualApproval'){ sh "echo 'Please review the application performance' " - timeout(time:600, unit:'MINUTES') { - input message: 'Application ready for deployment, Please review and approve' + //timeout(time:600, unit:'MINUTES') { + //input message: 'Application ready for deployment, Please review and approve' } } stage('7.Deploy2Prod'){ sh "echo 'Deploy application to the customers/production' " - deploy adapters: [tomcat9(credentialsId: 'tomcat-credentials', path: '', url: 'http://34.219.51.216:8177/')], contextPath: null, war: 'target/*war' + //deploy adapters: [tomcat9(credentialsId: 'tomcat-credentials', path: '', url: 'http://34.219.51.216:8177/')], contextPath: null, war: 'target/*war' } stage('8.APM'){