From b05bc2c751244ba023419337661adeaccf55c915 Mon Sep 17 00:00:00 2001 From: PUSH-PRAG Date: Mon, 24 Jan 2022 00:55:02 +0530 Subject: [PATCH] Update 03-Jenkinsfile-deploy-to-tomcat --- cicd/03-Jenkinsfile-deploy-to-tomcat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cicd/03-Jenkinsfile-deploy-to-tomcat b/cicd/03-Jenkinsfile-deploy-to-tomcat index a3c7cf3c4f..3e4a56644b 100644 --- a/cicd/03-Jenkinsfile-deploy-to-tomcat +++ b/cicd/03-Jenkinsfile-deploy-to-tomcat @@ -12,7 +12,7 @@ pipeline { stage ('Deploy') { steps { script { - deploy adapters: [tomcat9(credentialsId: 'tomcat_credential', path: '', url: 'http://dayal-test.letspractice.tk:8081')], contextPath: '/pipeline', onFailure: false, war: 'webapp/target/*.war' + deploy adapters: [tomcat9(credentialsId: 'tomact-dev', path: '', url: 'http://localhost:8080')], contextPath: '/welcome', onFailure: false, war: 'webapp/target/*.war' } } }