From 9e0622840ab7f1b0563587dd0b40efe79c813877 Mon Sep 17 00:00:00 2001 From: MMahi Date: Wed, 3 Jul 2024 18:41:16 +0000 Subject: [PATCH 1/2] fixed dependency errors --- pom.xml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index eccd2068..992871fb 100644 --- a/pom.xml +++ b/pom.xml @@ -34,11 +34,23 @@ maven-compiler-plugin - 1.6 - 1.6 + 1.8 + 1.8 + + org.apache.maven.plugins + maven-war-plugin + 3.3.1 + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + maven-release-plugin From 4f6014e0cac6066d8c21cc6455fc97f3d5f4e0fe Mon Sep 17 00:00:00 2001 From: MMahiketh Date: Fri, 12 Jul 2024 03:35:12 +0530 Subject: [PATCH 2/2] Added Jenkinsfile --- Jenkinsfile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..c04eaac9 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,28 @@ +pipeline{ + + agent any + + stages{ + + stage("build") { + + steps{ + echo 'build the app' + } + } + + stage("test") { + + steps{ + echo 'test the app' + } + } + + stage("deploy") { + + steps{ + echo 'deploy the app' + } + } + } +}