From f7f0ef7d21f26d5e267024e69db678521c917c60 Mon Sep 17 00:00:00 2001 From: GopikaRani <144465170+GopikaRani1045@users.noreply.github.com> Date: Tue, 2 Dec 2025 20:23:32 +0530 Subject: [PATCH] Update deployment adapter from tomcat8 to tomcat9 --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b37b824..c90b777 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,7 +23,7 @@ stages{ stage ('Deployments'){ steps { echo "Deploying the Artifact" - deploy adapters: [tomcat8(credentialsId: 'tomcatcred', path: '', url: 'http://13.234.120.154:8080/')], contextPath: null, war: '**/*.war' + deploy adapters: [tomcat9(alternativeDeploymentContext: '', credentialsId: 'tomcatcred', path: '', url: 'http://54.219.144.29:8080/')], contextPath: null, war: '**/*.war' } } }