From f25a204254b67afbc06c26131720287a8ee958f7 Mon Sep 17 00:00:00 2001 From: javahometech Date: Sun, 28 Oct 2018 11:14:07 +0530 Subject: [PATCH 001/127] Update pom.xml --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2fcc67d85fb..7e13daa2fad 100755 --- a/pom.xml +++ b/pom.xml @@ -27,12 +27,12 @@ nexus - http://172.31.17.173:8081/repository/maven-snapshots/ + http://13.233.125.37:8081/repository/maven-snapshots/ nexus - http://172.31.17.173:8081/repository/maven-releases/ + http://13.233.125.37:8081/repository/maven-releases/ From 64a3f0f3df40c458f00e57d966aec87814001dfb Mon Sep 17 00:00:00 2001 From: javahometech Date: Sun, 28 Oct 2018 11:36:00 +0530 Subject: [PATCH 002/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7e13daa2fad..83e170915af 100755 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ in.javahome myweb war - 0.0.3 + 0.0.4-SNAPSHOT my-app http://maven.apache.org From 11702be3ad507b9e1ce501fd05694ddb73ce2856 Mon Sep 17 00:00:00 2001 From: javahometech Date: Sun, 28 Oct 2018 11:38:04 +0530 Subject: [PATCH 003/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 83e170915af..9b05e108878 100755 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ in.javahome myweb war - 0.0.4-SNAPSHOT + 0.0.4 my-app http://maven.apache.org From ff57e3e144790442f1344a0373f40c2002a94aac Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 11:12:58 +0530 Subject: [PATCH 004/127] Update CalculatorTest.java --- .../myweb/controller/CalculatorTest.java | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/src/test/java/in/javahome/myweb/controller/CalculatorTest.java b/src/test/java/in/javahome/myweb/controller/CalculatorTest.java index e815aade1f8..532f2c9e433 100755 --- a/src/test/java/in/javahome/myweb/controller/CalculatorTest.java +++ b/src/test/java/in/javahome/myweb/controller/CalculatorTest.java @@ -11,4 +11,31 @@ public void testAdd(){ public void testMultiply(){ Assert.assertEquals(cal.multiply(10, 20), 200); } + Properties prop = new Properties(); + OutputStream output = null; + + try { + + output = new FileOutputStream("config.properties"); + + // set the properties value + prop.setProperty("database", "localhost"); + prop.setProperty("dbuser", "hari"); + prop.setProperty("dbpassword", "password"); + + // save properties to project root folder + prop.store(output, null); + + } catch (IOException io) { + io.printStackTrace(); + } finally { + if (output != null) { + try { + output.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + + } } From c4a4ba22b21011570378604df52d0eab24106e5c Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 11:31:09 +0530 Subject: [PATCH 005/127] Update CalculatorTest.java --- .../myweb/controller/CalculatorTest.java | 64 +++++++++++-------- 1 file changed, 38 insertions(+), 26 deletions(-) diff --git a/src/test/java/in/javahome/myweb/controller/CalculatorTest.java b/src/test/java/in/javahome/myweb/controller/CalculatorTest.java index 532f2c9e433..76150c1220c 100755 --- a/src/test/java/in/javahome/myweb/controller/CalculatorTest.java +++ b/src/test/java/in/javahome/myweb/controller/CalculatorTest.java @@ -1,41 +1,53 @@ package in.javahome.myweb.controller; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.OutputStream; +import java.util.Properties; import junit.framework.Assert; import junit.framework.TestCase; public class CalculatorTest extends TestCase { Calculator cal = new Calculator(); - public void testAdd(){ + + public void testAdd() { Assert.assertEquals(cal.add(10, 20), 30); } - public void testMultiply(){ + + public void testMultiply() { Assert.assertEquals(cal.multiply(10, 20), 200); } - Properties prop = new Properties(); - OutputStream output = null; - - try { - - output = new FileOutputStream("config.properties"); - - // set the properties value - prop.setProperty("database", "localhost"); - prop.setProperty("dbuser", "hari"); - prop.setProperty("dbpassword", "password"); - // save properties to project root folder - prop.store(output, null); - - } catch (IOException io) { - io.printStackTrace(); - } finally { - if (output != null) { - try { - output.close(); - } catch (IOException e) { - e.printStackTrace(); - } + Properties prop = new Properties(); + OutputStream output = null; + + try + { + + output = new FileOutputStream("config.properties"); + + // set the properties value + prop.setProperty("database", "localhost"); + prop.setProperty("dbuser", "hari"); + prop.setProperty("dbpassword", "password"); + + // save properties to project root folder + prop.store(output, null); + + }catch( + IOException io) + { + io.printStackTrace(); + }finally + { + if (output != null) { + try { + output.close(); + } catch (IOException e) { + e.printStackTrace(); } - } + + } +} } From 3db8ad51de38bdea81991ce70a1c7d53f31f1572 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 11:34:29 +0530 Subject: [PATCH 006/127] Update CalculatorTest.java --- .../myweb/controller/CalculatorTest.java | 68 +++++++++---------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/src/test/java/in/javahome/myweb/controller/CalculatorTest.java b/src/test/java/in/javahome/myweb/controller/CalculatorTest.java index 76150c1220c..16a93d60c12 100755 --- a/src/test/java/in/javahome/myweb/controller/CalculatorTest.java +++ b/src/test/java/in/javahome/myweb/controller/CalculatorTest.java @@ -1,4 +1,6 @@ package in.javahome.myweb.controller; + + import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; @@ -11,43 +13,41 @@ public class CalculatorTest extends TestCase { Calculator cal = new Calculator(); public void testAdd() { - Assert.assertEquals(cal.add(10, 20), 30); + Properties prop = new Properties(); + + OutputStream output = null; + + try + { + + output = new FileOutputStream("config.properties"); + + // set the properties value + prop.setProperty("database", "localhost"); + prop.setProperty("dbuser", "hari"); + prop.setProperty("dbpassword", "password"); + + // save properties to project root folder + prop.store(output, null); + + }catch( + IOException io) + { + io.printStackTrace(); + }finally + { + if (output != null) { + try { + output.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + + } } public void testMultiply() { Assert.assertEquals(cal.multiply(10, 20), 200); } - - Properties prop = new Properties(); - OutputStream output = null; - - try - { - - output = new FileOutputStream("config.properties"); - - // set the properties value - prop.setProperty("database", "localhost"); - prop.setProperty("dbuser", "hari"); - prop.setProperty("dbpassword", "password"); - - // save properties to project root folder - prop.store(output, null); - - }catch( - IOException io) - { - io.printStackTrace(); - }finally - { - if (output != null) { - try { - output.close(); - } catch (IOException e) { - e.printStackTrace(); - } - } - - } -} } From c3b4c4279f8af595ebc2ef5474db3a7ecd33a5f3 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 11:43:30 +0530 Subject: [PATCH 007/127] Update CalculatorTest.java --- src/test/java/in/javahome/myweb/controller/CalculatorTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/in/javahome/myweb/controller/CalculatorTest.java b/src/test/java/in/javahome/myweb/controller/CalculatorTest.java index 16a93d60c12..140d8d2c23d 100755 --- a/src/test/java/in/javahome/myweb/controller/CalculatorTest.java +++ b/src/test/java/in/javahome/myweb/controller/CalculatorTest.java @@ -20,7 +20,7 @@ public void testAdd() { try { - output = new FileOutputStream("config.properties"); + output = new FileOutputStream("../config.properties"); // set the properties value prop.setProperty("database", "localhost"); From 11c03ce90ee951d82163d99e93922490a5b959fb Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 18:15:37 +0530 Subject: [PATCH 008/127] Create scm_demo --- scm_demo | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 scm_demo diff --git a/scm_demo b/scm_demo new file mode 100644 index 00000000000..af09415621a --- /dev/null +++ b/scm_demo @@ -0,0 +1,4 @@ +node { + checkout scm + /* .. snip .. */ +} From 97496c977d5e3a5979244cd7d888ddea5e9cb962 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 18:18:36 +0530 Subject: [PATCH 009/127] Update scm_demo --- scm_demo | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scm_demo b/scm_demo index af09415621a..99eb73de720 100644 --- a/scm_demo +++ b/scm_demo @@ -1,4 +1,11 @@ node { checkout scm /* .. snip .. */ + stage('Deploy') { + when { tag "release-*" } + steps { + echo 'Deploying only because this commit is tagged...' + sh 'make deploy' + } + } } From 9f7ae760e13e93c54c906f700fac44b787a3fc49 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 18:22:13 +0530 Subject: [PATCH 010/127] Update scm_demo --- scm_demo | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/scm_demo b/scm_demo index 99eb73de720..53e68ff0cb6 100644 --- a/scm_demo +++ b/scm_demo @@ -2,10 +2,7 @@ node { checkout scm /* .. snip .. */ stage('Deploy') { - when { tag "release-*" } - steps { - echo 'Deploying only because this commit is tagged...' - sh 'make deploy' - } + branchName = env.BRANCH_NAME + echo "$branchName" } } From 84c2ce22577033722f1091ce1282a677089ef4e2 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 18:23:30 +0530 Subject: [PATCH 011/127] Update scm_demo --- scm_demo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scm_demo b/scm_demo index 53e68ff0cb6..0cc78a961b4 100644 --- a/scm_demo +++ b/scm_demo @@ -2,7 +2,7 @@ node { checkout scm /* .. snip .. */ stage('Deploy') { - branchName = env.BRANCH_NAME - echo "$branchName" + def branchName = env.BRANCH_NAME + echo "${branchName}" } } From 6eb6db9007d47e2d047807002be516250e2a6617 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 18:24:45 +0530 Subject: [PATCH 012/127] Update scm_demo --- scm_demo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm_demo b/scm_demo index 0cc78a961b4..c280244a475 100644 --- a/scm_demo +++ b/scm_demo @@ -3,6 +3,6 @@ node { /* .. snip .. */ stage('Deploy') { def branchName = env.BRANCH_NAME - echo "${branchName}" + echo scm.branches } } From 1aefb6f889eea1ecc06898cc1a5ad71259f326a5 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 18:27:30 +0530 Subject: [PATCH 013/127] Update scm_demo --- scm_demo | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scm_demo b/scm_demo index c280244a475..4bb6321b68c 100644 --- a/scm_demo +++ b/scm_demo @@ -3,6 +3,8 @@ node { /* .. snip .. */ stage('Deploy') { def branchName = env.BRANCH_NAME - echo scm.branches + for(def branch: scm.branches){ + echo branch + } } } From a024f9f53baa29ccec56f0a446ddd1d66a074e1e Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 18:30:17 +0530 Subject: [PATCH 014/127] Update scm_demo --- scm_demo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm_demo b/scm_demo index 4bb6321b68c..7ad0c48fdc9 100644 --- a/scm_demo +++ b/scm_demo @@ -4,7 +4,7 @@ node { stage('Deploy') { def branchName = env.BRANCH_NAME for(def branch: scm.branches){ - echo branch + echo branch.name } } } From 550e92ad9bd4bf57889e113bf443f8369900b2c0 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 18:34:25 +0530 Subject: [PATCH 015/127] Update scm_demo --- scm_demo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm_demo b/scm_demo index 7ad0c48fdc9..fecbc96301d 100644 --- a/scm_demo +++ b/scm_demo @@ -2,7 +2,7 @@ node { checkout scm /* .. snip .. */ stage('Deploy') { - def branchName = env.BRANCH_NAME + echo evn.BRANCH_NAME for(def branch: scm.branches){ echo branch.name } From 132a65481510f8cd6e2d81d6fac8873227c04c0e Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 18:35:28 +0530 Subject: [PATCH 016/127] Update scm_demo --- scm_demo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm_demo b/scm_demo index fecbc96301d..d09bc35610d 100644 --- a/scm_demo +++ b/scm_demo @@ -2,7 +2,7 @@ node { checkout scm /* .. snip .. */ stage('Deploy') { - echo evn.BRANCH_NAME + echo "${evn.BRANCH_NAME}" for(def branch: scm.branches){ echo branch.name } From 463302b3032bb24100a4551be7ea408369c1f07e Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 18:37:56 +0530 Subject: [PATCH 017/127] Update scm_demo --- scm_demo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm_demo b/scm_demo index d09bc35610d..c9da1cfd67e 100644 --- a/scm_demo +++ b/scm_demo @@ -2,7 +2,7 @@ node { checkout scm /* .. snip .. */ stage('Deploy') { - echo "${evn.BRANCH_NAME}" + echo "${BRANCH_NAME}" for(def branch: scm.branches){ echo branch.name } From 34601b2d633ee6715ee6e3b0459eee6d583f1502 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 18:38:42 +0530 Subject: [PATCH 018/127] Update scm_demo --- scm_demo | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scm_demo b/scm_demo index c9da1cfd67e..b31fe5a4ced 100644 --- a/scm_demo +++ b/scm_demo @@ -1,8 +1,9 @@ node { checkout scm /* .. snip .. */ + echo "${env.BRANCH_NAME}" stage('Deploy') { - echo "${BRANCH_NAME}" + for(def branch: scm.branches){ echo branch.name } From b66a467e8190ff78e6eba8618cee9ad9ce7d2a75 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 1 Nov 2018 18:57:50 +0530 Subject: [PATCH 019/127] Update scm_demo --- scm_demo | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/scm_demo b/scm_demo index b31fe5a4ced..8e05d6eaf96 100644 --- a/scm_demo +++ b/scm_demo @@ -1,11 +1,6 @@ node { - checkout scm - /* .. snip .. */ - echo "${env.BRANCH_NAME}" - stage('Deploy') { - - for(def branch: scm.branches){ - echo branch.name - } - } + + def scmVars = checkout scm + def commitHash = scmVars.GIT_COMMIT + echo commitHash } From e8ef00c4922f1fb378d32e14e02c83b3b144984d Mon Sep 17 00:00:00 2001 From: javahometech Date: Fri, 2 Nov 2018 08:05:20 +0530 Subject: [PATCH 020/127] Update index.html --- src/main/webapp/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html index 02ec0639f45..9a27c48265d 100755 --- a/src/main/webapp/index.html +++ b/src/main/webapp/index.html @@ -11,7 +11,7 @@
-

Javahome App - 0.0.3

+

Javahome App - 0.0.4

From fb0f4b6921166e9f9596f8e5ed6ecafcb8e791de Mon Sep 17 00:00:00 2001 From: javahometech Date: Fri, 2 Nov 2018 08:14:12 +0530 Subject: [PATCH 021/127] Update Calculator.java --- src/main/java/in/javahome/myweb/controller/Calculator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/in/javahome/myweb/controller/Calculator.java b/src/main/java/in/javahome/myweb/controller/Calculator.java index 6eba58e4ee3..b7a17669334 100755 --- a/src/main/java/in/javahome/myweb/controller/Calculator.java +++ b/src/main/java/in/javahome/myweb/controller/Calculator.java @@ -2,7 +2,7 @@ /* * */ -public class Calculator { +public class Calculator {{ /* * @param i * @param j From 0f481a49c4423e59a4fa866c7755199b1169c757 Mon Sep 17 00:00:00 2001 From: javahometech Date: Fri, 2 Nov 2018 08:15:41 +0530 Subject: [PATCH 022/127] Update Calculator.java --- src/main/java/in/javahome/myweb/controller/Calculator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/in/javahome/myweb/controller/Calculator.java b/src/main/java/in/javahome/myweb/controller/Calculator.java index b7a17669334..6eba58e4ee3 100755 --- a/src/main/java/in/javahome/myweb/controller/Calculator.java +++ b/src/main/java/in/javahome/myweb/controller/Calculator.java @@ -2,7 +2,7 @@ /* * */ -public class Calculator {{ +public class Calculator { /* * @param i * @param j From f6a49ac995eddf01f96689304c4513c4aa0ef198 Mon Sep 17 00:00:00 2001 From: javahometech Date: Fri, 2 Nov 2018 08:16:25 +0530 Subject: [PATCH 023/127] Update web.xml --- src/main/webapp/WEB-INF/web.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/WEB-INF/web.xml b/src/main/webapp/WEB-INF/web.xml index 9f88c1f9632..acf55d41a81 100755 --- a/src/main/webapp/WEB-INF/web.xml +++ b/src/main/webapp/WEB-INF/web.xml @@ -2,6 +2,6 @@ "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" > - +Archetype Created Web Application From 18546cf03ea89cc13fa5f87322bb10183f0e856d Mon Sep 17 00:00:00 2001 From: javahometech Date: Fri, 2 Nov 2018 08:25:50 +0530 Subject: [PATCH 024/127] Update web.xml --- src/main/webapp/WEB-INF/web.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/WEB-INF/web.xml b/src/main/webapp/WEB-INF/web.xml index acf55d41a81..9f88c1f9632 100755 --- a/src/main/webapp/WEB-INF/web.xml +++ b/src/main/webapp/WEB-INF/web.xml @@ -2,6 +2,6 @@ "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" > - Archetype Created Web Application From ddacad13632582f72d7578e5967f95e6d5195910 Mon Sep 17 00:00:00 2001 From: javahometech Date: Tue, 6 Nov 2018 08:31:17 +0530 Subject: [PATCH 025/127] Update index.html --- src/main/webapp/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html index 9a27c48265d..224295d6f5d 100755 --- a/src/main/webapp/index.html +++ b/src/main/webapp/index.html @@ -11,7 +11,7 @@
-

Javahome App - 0.0.4

+

Javahome App - 0.0.5

From 6b19cf6255af830aa94ffe1deb3f756bb7d5d8c6 Mon Sep 17 00:00:00 2001 From: javahometech Date: Mon, 12 Nov 2018 08:00:41 +0530 Subject: [PATCH 026/127] Update index.html --- src/main/webapp/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html index 224295d6f5d..14d023856e0 100755 --- a/src/main/webapp/index.html +++ b/src/main/webapp/index.html @@ -11,7 +11,7 @@
-

Javahome App - 0.0.5

+

Javahome App - 0.0.6

From c71863caa9e5fa203cc8b68a292ff270314e90d6 Mon Sep 17 00:00:00 2001 From: javahometech Date: Fri, 16 Nov 2018 07:49:46 +0530 Subject: [PATCH 027/127] Create nov-2018-7am-devops --- nov-2018-7am-devops | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 nov-2018-7am-devops diff --git a/nov-2018-7am-devops b/nov-2018-7am-devops new file mode 100644 index 00000000000..31fe3e60aad --- /dev/null +++ b/nov-2018-7am-devops @@ -0,0 +1,31 @@ +node{ + def mvnHome = tool name: 'maven-3', type: 'maven' + def mvn = "${mvnHome}/bin/mvn" + def tomcatUsr = 'ec2-user' + stage('Git Checkout'){ + git branch: 'master', + credentialsId: 'github', + url: 'https://github.com/javahometech/my-app' + } + + stage('Build'){ + sh "${mvn} clean package" + } + stage('deploy-to-dev'){ + sh 'mv target/myweb*.war target/myweb.war' + sshagent(['tomcat-dev']) { + sh "ssh -o StrictHostKeyChecking=no ${tomcatUsr}@172.31.12.253 /opt/tomcat8/bin/shutdown.sh" + sh "ssh ${tomcatUsr}@172.31.12.253 rm -rf /opt/tomcat8/webapps/myweb*" + sh "scp target/myweb.war ${tomcatUsr}@172.31.12.253:/opt/tomcat8/webapps/" + sh "ssh ${tomcatUsr}@172.31.12.253 /opt/tomcat8/bin/startup.sh" + mail bcc: '', + body: '''myweb app deployed to Dev + Thanks + DevOps''', + cc: '', + from: '', replyTo: '', + subject: 'myweb app deployed to Dev', + to: 'hari.kammana@gmail.com' + } + } +} From 6ecb98e4281beef41c743c78535a7233366db03d Mon Sep 17 00:00:00 2001 From: javahometech Date: Sun, 18 Nov 2018 21:59:20 +0530 Subject: [PATCH 028/127] Update Dockerfile --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1403e584f7a..4cc4ca432a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,3 @@ FROM tomcat:8 # Take the war and copy to webapps of tomcat COPY target/*.war /usr/local/tomcat/webapps/ -# Added for jenkins demo From e0b32460fad796482d3942aac2d76c198928eff0 Mon Sep 17 00:00:00 2001 From: javahometech Date: Sun, 18 Nov 2018 22:00:36 +0530 Subject: [PATCH 029/127] Update Jenkinsfile --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index d4ac0cc2407..4db7c9a1ec2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -21,3 +21,5 @@ node{ tokenCredentialId: 'slack-demo' } } + + From ffc61080352abc55dee27f50f6ee7eca89f4f516 Mon Sep 17 00:00:00 2001 From: javahometech Date: Sun, 18 Nov 2018 22:12:04 +0530 Subject: [PATCH 030/127] Update Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 4cc4ca432a4..485a9d1fbcc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,4 @@ FROM tomcat:8 # Take the war and copy to webapps of tomcat COPY target/*.war /usr/local/tomcat/webapps/ +# Testing Jenkins webhook From 54b4fdc1b07ea3eaae66bc2dbad8904a3439ef69 Mon Sep 17 00:00:00 2001 From: javahometech Date: Sun, 18 Nov 2018 22:15:23 +0530 Subject: [PATCH 031/127] Update Dockerfile --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 485a9d1fbcc..4cc4ca432a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,3 @@ FROM tomcat:8 # Take the war and copy to webapps of tomcat COPY target/*.war /usr/local/tomcat/webapps/ -# Testing Jenkins webhook From 2f29e54e35aab649ed33197c6d7751d36f6e5332 Mon Sep 17 00:00:00 2001 From: javahometech Date: Wed, 5 Dec 2018 08:32:11 +0530 Subject: [PATCH 032/127] Update index.html --- src/main/webapp/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html index 14d023856e0..c4852a69b13 100755 --- a/src/main/webapp/index.html +++ b/src/main/webapp/index.html @@ -11,7 +11,7 @@
-

Javahome App - 0.0.6

+

Javahome App - 0.0.5 - Deployed in Swarm

From 4f4e0e615e875b9ffaf28e08f470af4c5e3b0a22 Mon Sep 17 00:00:00 2001 From: javahometech Date: Wed, 5 Dec 2018 08:32:35 +0530 Subject: [PATCH 033/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9b05e108878..15087d833a9 100755 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ in.javahome myweb war - 0.0.4 + 0.0.5 my-app http://maven.apache.org From 50d6579cf22b38c01d68c93a7c5dcb837dda41ad Mon Sep 17 00:00:00 2001 From: javahometech Date: Wed, 5 Dec 2018 08:39:21 +0530 Subject: [PATCH 034/127] Create docker-swarm-ci-cd --- docker-swarm-ci-cd | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 docker-swarm-ci-cd diff --git a/docker-swarm-ci-cd b/docker-swarm-ci-cd new file mode 100644 index 00000000000..61c27747f7a --- /dev/null +++ b/docker-swarm-ci-cd @@ -0,0 +1,41 @@ +node{ + def pom = readMavenPom file: 'pom.xml' + def version = pom.version + def nexus_tag = "172.31.24.222:8083/myweb:${version}" + def mvnHome = tool name: 'maven-3', type: 'maven' + def mvn = "${mvnHome}/bin/mvn" + stage('SCM Checkout'){ + git 'https://github.com/javahometech/my-app' + } + stage('Maven Build'){ + sh "${mvn} clean package" + sh 'mv target/myweb*.war target/myweb.war' + } + + stage('Docker Build'){ + + sh "docker build -t ${nexus_tag} ." + } + + stage('Push to Nexus'){ + sh "docker login 172.31.24.222:8083 -u admin -p admin123" + sh "docker push ${nexus_tag}" + } + + stage('Deploy to swarm'){ + try{ + def service = "docker service create -d -p 90:8080 --replicas=7 --name=myweb ${nexus_tag}" + sshagent (credentials: ['docker-swarm-manager']) { + def svs = "ec2-user@13.233.223.243 ${service}" + sh "ssh -o StrictHostKeyChecking=no ${svs}" + } + }catch(e){ + def service = "docker service update --image=${nexus_tag} myweb" + sshagent (credentials: ['docker-swarm-manager']) { + def svs = "ec2-user@13.233.223.243 ${service}" + sh "ssh -o StrictHostKeyChecking=no ${svs}" + + } + } + } +} From 8856957e627c611d5937de10dcd3e0a1493b7b58 Mon Sep 17 00:00:00 2001 From: javahometech Date: Mon, 17 Dec 2018 19:14:57 +0530 Subject: [PATCH 035/127] Update pom.xml --- pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pom.xml b/pom.xml index 15087d833a9..663a858bf47 100755 --- a/pom.xml +++ b/pom.xml @@ -10,6 +10,12 @@ http://maven.apache.org + + org.apache.poi + poi + 3.7 + + javax.servlet javax.servlet-api From d2486233ddc88edf9f8018842e79351347935562 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 20 Dec 2018 08:18:40 +0530 Subject: [PATCH 036/127] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4db7c9a1ec2..b8aa1f1f814 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ node{ git 'https://github.com/javahometech/my-app' } stage('Compile-Package'){ - // Get maven home path + def mvnHome = tool name: 'maven-3', type: 'maven' sh "${mvnHome}/bin/mvn package" } From da17df9fd66d710b94f595e4dfd807387ed0cf98 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 20 Dec 2018 08:19:24 +0530 Subject: [PATCH 037/127] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b8aa1f1f814..ed1bb2e0a50 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,4 +1,4 @@ -node{ + node{ stage('SCM Checkout'){ git 'https://github.com/javahometech/my-app' } From 8d77a884bd831942003629f83dba8ac8ab6cc94a Mon Sep 17 00:00:00 2001 From: javahometech Date: Fri, 21 Dec 2018 07:34:44 +0530 Subject: [PATCH 038/127] Update Calculator.java --- src/main/java/in/javahome/myweb/controller/Calculator.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/in/javahome/myweb/controller/Calculator.java b/src/main/java/in/javahome/myweb/controller/Calculator.java index 6eba58e4ee3..06fa3707381 100755 --- a/src/main/java/in/javahome/myweb/controller/Calculator.java +++ b/src/main/java/in/javahome/myweb/controller/Calculator.java @@ -9,6 +9,8 @@ public class Calculator { * @return int */ public int add(int i, int j){ + String s = null; + s.toString(); return i+j; } public int multiply(int i, int j){ From 87558d7f87a639f254c8f20045a4bdf3efdbb375 Mon Sep 17 00:00:00 2001 From: javahometech Date: Wed, 16 Jan 2019 18:31:06 +0530 Subject: [PATCH 039/127] Update function-demo --- function-demo | 1 + 1 file changed, 1 insertion(+) diff --git a/function-demo b/function-demo index 3869d26a9e8..60dc0457885 100644 --- a/function-demo +++ b/function-demo @@ -1,3 +1,4 @@ +// Added for demo node{ stage('SCM Checkout'){ git 'https://github.com/javahometech/my-app' From 6bf0055e9ed9039385be75588d5a01fe34253908 Mon Sep 17 00:00:00 2001 From: javahometech Date: Wed, 16 Jan 2019 18:55:24 +0530 Subject: [PATCH 040/127] Update pom.xml --- pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pom.xml b/pom.xml index 663a858bf47..0dbbed8dbb4 100755 --- a/pom.xml +++ b/pom.xml @@ -6,6 +6,8 @@ war 0.0.5 my-app + + http://maven.apache.org From 3e6bb7769e9bfa02ac2b128c41bff0fc077f7c77 Mon Sep 17 00:00:00 2001 From: javahometech Date: Sat, 19 Jan 2019 18:29:35 +0530 Subject: [PATCH 041/127] Update deploy-to-tomcat --- deploy-to-tomcat | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/deploy-to-tomcat b/deploy-to-tomcat index 283046e7e99..62063a9e9c7 100644 --- a/deploy-to-tomcat +++ b/deploy-to-tomcat @@ -1,12 +1,26 @@ node{ - + def tomcatIp = '172.31.14.131' + def tomcatUser = 'ec2-user' + def stopTomcat = "ssh ${tomcatUser}@${tomcatIp} /opt/tomcat8/bin/shutdown.sh" + def startTomcat = "ssh ${tomcatUser}@${tomcatIp} /opt/tomcat8/bin/startup.sh" + def copyWar = "scp -o StrictHostKeyChecking=no target/myweb.war ${tomcatUser}@${tomcatIp}:/opt/tomcat8/webapps/" stage('SCM Checkout'){ - git 'https://github.com/javahometech/my-app' + git branch: 'master', + credentialsId: 'javahometech', + url: 'https://github.com/javahometech/myweb' + } + stage('Maven Build'){ + def mvnHome = tool name: 'maven3', type: 'maven' + sh "${mvnHome}/bin/mvn clean package" + } + + stage('Deploy Dev'){ + sh 'mv target/myweb*.war target/myweb.war' + + sshagent(['tomcat-dev']) { + sh "${stopTomcat}" + sh "${copyWar}" + sh "${startTomcat}" + } } - stage('Compile-Package'){ - // Get maven home path - def mvnHome = tool name: 'maven-3', type: 'maven' - sh "${mvnHome}/bin/mvn package" - } - } From 0bd79fe99c902d23f039fd397903b38ef3912568 Mon Sep 17 00:00:00 2001 From: javahometech Date: Sat, 27 Apr 2019 11:41:39 +0530 Subject: [PATCH 042/127] Update index.html --- src/main/webapp/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html index c4852a69b13..3ebd4ad3860 100755 --- a/src/main/webapp/index.html +++ b/src/main/webapp/index.html @@ -11,7 +11,7 @@
-

Javahome App - 0.0.5 - Deployed in Swarm

+

Javahome App Deployed by Jenkins

From e0df037e67e3107ff80606c70f12331f20899edb Mon Sep 17 00:00:00 2001 From: vagrant Date: Wed, 1 May 2019 11:56:20 +0000 Subject: [PATCH 043/127] ssh demo --- pom.xml | 3 --- 1 file changed, 3 deletions(-) diff --git a/pom.xml b/pom.xml index 0dbbed8dbb4..eee400b8576 100755 --- a/pom.xml +++ b/pom.xml @@ -6,9 +6,6 @@ war 0.0.5 my-app - - - http://maven.apache.org From d1b6f4db6fb1b5ef4732b70bdd114c83d1b744c8 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 30 May 2019 07:55:29 +0530 Subject: [PATCH 044/127] Update Jenkinsfile --- Jenkinsfile | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ed1bb2e0a50..eb2a427e36a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,24 +2,6 @@ stage('SCM Checkout'){ git 'https://github.com/javahometech/my-app' } - stage('Compile-Package'){ - - def mvnHome = tool name: 'maven-3', type: 'maven' - sh "${mvnHome}/bin/mvn package" - } - stage('Email Notification'){ - mail bcc: '', body: '''Hi Welcome to jenkins email alerts - Thanks - Hari''', cc: '', from: '', replyTo: '', subject: 'Jenkins Job', to: 'hari.kammana@gmail.com' - } - stage('Slack Notification'){ - slackSend baseUrl: 'https://hooks.slack.com/services/', - channel: '#jenkins-pipeline-demo', - color: 'good', - message: 'Welcome to Jenkins, Slack!', - teamDomain: 'javahomecloud', - tokenCredentialId: 'slack-demo' - } } From c4c18b92c8dc55b14d42f9f3b262b1ad0cc6176a Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 30 May 2019 08:00:14 +0530 Subject: [PATCH 045/127] Update Jenkinsfile --- Jenkinsfile | 46 +++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 43 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index eb2a427e36a..fb065a1a9c6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,7 +1,47 @@ - node{ + +node { + stage('SCM Checkout'){ - git 'https://github.com/javahometech/my-app' + // Clone repo + git branch: 'master', + credentialsId: 'github', + url: 'https://github.com/javahometech/myweb' + } -} + + stage('Sonar Publish'){ + // lets do + } + + + + stage('Mvn Package'){ + // Build using maven + def mvn = tool (name: 'maven3', type: 'maven') + '/bin/mvn' + sh "${mvn} clean package deploy" + } + + stage('deploy-dev'){ + def tomcatDevIp = '172.31.28.172' + def tomcatHome = '/opt/tomcat8/' + def webApps = tomcatHome+'webapps/' + def tomcatStart = "${tomcatHome}bin/startup.sh" + def tomcatStop = "${tomcatHome}bin/shutdown.sh" + + sshagent (credentials: ['tomcat-dev']) { + sh "scp -o StrictHostKeyChecking=no target/myweb*.war ec2-user@${tomcatDevIp}:${webApps}myweb.war" + sh "ssh ec2-user@${tomcatDevIp} ${tomcatStop}" + sh "ssh ec2-user@${tomcatDevIp} ${tomcatStart}" + } + } + stage('Email Notification'){ + mail bcc: '', body: """Hi Team, You build successfully deployed + Job URL : ${env.JOB_URL} + Job Name: ${env.JOB_NAME} +Thanks, +DevOps Team""", cc: '', from: '', replyTo: '', subject: "${env.JOB_NAME} Success", to: 'hari.kammana@gmail.com' + + } +} From a769a8f7da782c9487e6bcac84c78edf8de50239 Mon Sep 17 00:00:00 2001 From: Hari Kammana Date: Thu, 30 May 2019 08:26:19 +0530 Subject: [PATCH 046/127] Integrating with sonar qube --- Jenkinsfile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index fb065a1a9c6..1e17d3f1656 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,6 +1,7 @@ node { - + def sonarUrl = 'sonar.host.url=http://172.31.30.136:9000' + def mvn = tool (name: 'maven3', type: 'maven') + '/bin/mvn' stage('SCM Checkout'){ // Clone repo git branch: 'master', @@ -10,14 +11,17 @@ node { } stage('Sonar Publish'){ - // lets do + withCredentials([string(credentialsId: 'sonarqube', variable: 'sonarToken')]) { + def sonarToken = "sonar.login=${sonarToken}" + sh "${mvn} sonar:sonar -D${sonarUrl} -D${sonarToken}" + } + } - stage('Mvn Package'){ // Build using maven - def mvn = tool (name: 'maven3', type: 'maven') + '/bin/mvn' + sh "${mvn} clean package deploy" } From e5ad45c6f74021beb04b6b9deb8874f85049480c Mon Sep 17 00:00:00 2001 From: javahometech Date: Mon, 17 Jun 2019 07:50:31 +0530 Subject: [PATCH 047/127] Create Chart.yml --- helm/node-app/Chart.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 helm/node-app/Chart.yml diff --git a/helm/node-app/Chart.yml b/helm/node-app/Chart.yml new file mode 100644 index 00000000000..8b137891791 --- /dev/null +++ b/helm/node-app/Chart.yml @@ -0,0 +1 @@ + From f3c95828abf51c4100d11b1adedd5ca58c436579 Mon Sep 17 00:00:00 2001 From: javahometech Date: Fri, 28 Jun 2019 18:55:02 +0530 Subject: [PATCH 048/127] Update index.html --- src/main/webapp/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html index 3ebd4ad3860..5382fb5a5af 100755 --- a/src/main/webapp/index.html +++ b/src/main/webapp/index.html @@ -11,7 +11,7 @@
-

Javahome App Deployed by Jenkins

+

Javahome App Deployed manually

From 00bf3bfb4573f477768e6328194bdabe2558b8df Mon Sep 17 00:00:00 2001 From: javahometech Date: Fri, 28 Jun 2019 19:04:22 +0530 Subject: [PATCH 049/127] Update web.xml --- src/main/webapp/WEB-INF/web.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/WEB-INF/web.xml b/src/main/webapp/WEB-INF/web.xml index 9f88c1f9632..e37c2c5ebbb 100755 --- a/src/main/webapp/WEB-INF/web.xml +++ b/src/main/webapp/WEB-INF/web.xml @@ -4,4 +4,4 @@ Archetype Created Web Application - + From 350d5aa5cd2a206761ab5b4fa06d4f61109232ac Mon Sep 17 00:00:00 2001 From: javahometech Date: Fri, 28 Jun 2019 19:11:43 +0530 Subject: [PATCH 050/127] Update web.xml --- src/main/webapp/WEB-INF/web.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/WEB-INF/web.xml b/src/main/webapp/WEB-INF/web.xml index e37c2c5ebbb..9f88c1f9632 100755 --- a/src/main/webapp/WEB-INF/web.xml +++ b/src/main/webapp/WEB-INF/web.xml @@ -4,4 +4,4 @@ Archetype Created Web Application - + From 91f2737a0600e1af5b55be84a3b3ef3b8ef95dc0 Mon Sep 17 00:00:00 2001 From: javahometech Date: Wed, 3 Jul 2019 19:03:34 +0530 Subject: [PATCH 051/127] Update index.html --- src/main/webapp/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html index 5382fb5a5af..c6e653ca104 100755 --- a/src/main/webapp/index.html +++ b/src/main/webapp/index.html @@ -11,7 +11,7 @@
-

Javahome App Deployed manually

+

Javahome App Deployed by 6pm batch !!!!

From 3691faf074f6b4f25a862f0814d5059a4f8e379c Mon Sep 17 00:00:00 2001 From: javahometech Date: Wed, 3 Jul 2019 19:26:59 +0530 Subject: [PATCH 052/127] Update index.html --- src/main/webapp/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html index c6e653ca104..ad034fec5f3 100755 --- a/src/main/webapp/index.html +++ b/src/main/webapp/index.html @@ -11,7 +11,7 @@
-

Javahome App Deployed by 6pm batch !!!!

+

Javahome App Deployed by 6pm batch !!!!

From bbb06aa45f867aefa5d7c865a42e499da7d16f2f Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 4 Jul 2019 18:23:05 +0530 Subject: [PATCH 053/127] Update index.html --- src/main/webapp/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html index ad034fec5f3..3ac18b398bd 100755 --- a/src/main/webapp/index.html +++ b/src/main/webapp/index.html @@ -11,7 +11,7 @@
-

Javahome App Deployed by 6pm batch !!!!

+

Javahome Webhook demo!!!!

From 5d7665ccd53248e4e6413c51fe548257c050f507 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 4 Jul 2019 19:05:55 +0530 Subject: [PATCH 054/127] Update Calculator.java --- src/main/java/in/javahome/myweb/controller/Calculator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/in/javahome/myweb/controller/Calculator.java b/src/main/java/in/javahome/myweb/controller/Calculator.java index 06fa3707381..43c5a481d1d 100755 --- a/src/main/java/in/javahome/myweb/controller/Calculator.java +++ b/src/main/java/in/javahome/myweb/controller/Calculator.java @@ -2,7 +2,7 @@ /* * */ -public class Calculator { +public class Calculator {{ /* * @param i * @param j From d0e4ed65feb44225c8bda7127c649131687dfe99 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 4 Jul 2019 19:07:14 +0530 Subject: [PATCH 055/127] Update Calculator.java --- src/main/java/in/javahome/myweb/controller/Calculator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/in/javahome/myweb/controller/Calculator.java b/src/main/java/in/javahome/myweb/controller/Calculator.java index 43c5a481d1d..06fa3707381 100755 --- a/src/main/java/in/javahome/myweb/controller/Calculator.java +++ b/src/main/java/in/javahome/myweb/controller/Calculator.java @@ -2,7 +2,7 @@ /* * */ -public class Calculator {{ +public class Calculator { /* * @param i * @param j From c3f7b0278c97d713508f15bcec79cdd3d4f07409 Mon Sep 17 00:00:00 2001 From: javahometech Date: Wed, 31 Jul 2019 19:09:58 +0530 Subject: [PATCH 056/127] Update pom.xml --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index eee400b8576..3173e589076 100755 --- a/pom.xml +++ b/pom.xml @@ -32,12 +32,12 @@ nexus - http://13.233.125.37:8081/repository/maven-snapshots/ + http://172.31.45.148:8081/repository/maven-snapshots/ nexus - http://13.233.125.37:8081/repository/maven-releases/ + http://172.31.45.148:8081/repository/maven-releases/ From c764427829360fc1464e036c6f21ec80cd8b53c5 Mon Sep 17 00:00:00 2001 From: javahometech Date: Wed, 31 Jul 2019 19:29:05 +0530 Subject: [PATCH 057/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3173e589076..3dcadb3c6cf 100755 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ in.javahome myweb war - 0.0.5 + 0.0.6-SNAPSHOT my-app http://maven.apache.org From b02523a1eaa379f6d60088923f6738fa85f28566 Mon Sep 17 00:00:00 2001 From: javahometech Date: Wed, 31 Jul 2019 19:32:13 +0530 Subject: [PATCH 058/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3dcadb3c6cf..5a527ef3159 100755 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ in.javahome myweb war - 0.0.6-SNAPSHOT + 0.0.6 my-app http://maven.apache.org From 4038f687b9b3a31949d254ee2059f4a7ecdc6f8d Mon Sep 17 00:00:00 2001 From: javahometech Date: Sat, 10 Aug 2019 19:30:14 +0530 Subject: [PATCH 059/127] Update pom.xml --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 5a527ef3159..4dea16903cc 100755 --- a/pom.xml +++ b/pom.xml @@ -32,12 +32,12 @@ nexus - http://172.31.45.148:8081/repository/maven-snapshots/ + http://172.31.42.97:8081/repository/maven-snapshots/ nexus - http://172.31.45.148:8081/repository/maven-releases/ + http://172.31.42.97:8081/repository/maven-releases/ From 5db9b0222be1631b54eed00efe15f2ab3626d860 Mon Sep 17 00:00:00 2001 From: javahometech Date: Tue, 13 Aug 2019 10:38:58 +0530 Subject: [PATCH 060/127] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4cc4ca432a4..acf7c419ac3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ FROM tomcat:8 # Take the war and copy to webapps of tomcat -COPY target/*.war /usr/local/tomcat/webapps/ +COPY target/*.war /usr/local/tomcat/webapps/myweb.war From 56819a6938f8448a10a984e1ffacdf204090d113 Mon Sep 17 00:00:00 2001 From: javahometech Date: Tue, 13 Aug 2019 11:04:04 +0530 Subject: [PATCH 061/127] Create 2019-Aug-9:30Am-jenkinsfile --- 2019-Aug-9:30Am-jenkinsfile | 44 +++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 2019-Aug-9:30Am-jenkinsfile diff --git a/2019-Aug-9:30Am-jenkinsfile b/2019-Aug-9:30Am-jenkinsfile new file mode 100644 index 00000000000..50cbb35c29b --- /dev/null +++ b/2019-Aug-9:30Am-jenkinsfile @@ -0,0 +1,44 @@ +node('master'){ + // Add maven to path + env.PATH = "/opt/maven3/bin/:$PATH" + + stage('Git Clone/Pull'){ + git branch: 'dev', + url: 'https://github.com/javahometech/my-app' + } + + stage('Build Docker Image'){ + sh "mvn clean package" + sh "mv target/*.war target/myweb.war" + sh "docker build -t kammana/my-app:1.0 ." + } + + stage('Push Image'){ + withCredentials([string(credentialsId: 'docker-hub', variable: 'dockerHubPwd')]) { + sh "docker login -u kammana -p ${dockerHubPwd}" + } + sh "docker push kammana/my-app:1.0" + } + + stage('Delete Old Container'){ + sshagent (credentials: ['dev-docker']) { + try{ + def dockrRm = "docker rm -f my-app" + def dockrRmImage = "docker rmi kammana/my-app:1.0" + sh "ssh -o StrictHostKeyChecking=no ec2-user@172.31.43.90 ${dockrRm} " + sh "ssh -o StrictHostKeyChecking=no ec2-user@172.31.43.90 ${dockrRmImage} " + }catch(e){ + echo "container my-app not found" + } + } + + } + + stage('Deploy On Dev'){ + sshagent (credentials: ['dev-docker']) { + def dockerRun = "docker run -d -p 8080:8080 --name=my-app kammana/my-app:1.0" + sh "ssh -o StrictHostKeyChecking=no ec2-user@172.31.43.90 ${dockerRun} " + } + } + +} From bda8ae07accd30f9a91e7a4238c3b7838634b5ea Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 15 Aug 2019 10:08:55 +0530 Subject: [PATCH 062/127] Update pom.xml --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4dea16903cc..ffa89048112 100755 --- a/pom.xml +++ b/pom.xml @@ -32,12 +32,12 @@ nexus - http://172.31.42.97:8081/repository/maven-snapshots/ + http://172.31.15.236:8081/repository/maven-snapshots/ nexus - http://172.31.42.97:8081/repository/maven-releases/ + http://172.31.15.236:8081/repository/maven-releases/ From 6f7824a032618eb095ada762283633d1a60af8b4 Mon Sep 17 00:00:00 2001 From: javahometech Date: Thu, 15 Aug 2019 10:22:52 +0530 Subject: [PATCH 063/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ffa89048112..cce0f3c0fec 100755 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ in.javahome myweb war - 0.0.6 + 0.0.7-SNAPSHOT my-app http://maven.apache.org From 67d34eaf19c698ee792d96984c2c5ad6a36e7521 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Wed, 18 Sep 2019 20:41:30 +0530 Subject: [PATCH 064/127] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index acf7c419ac3..0b37443fae3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ FROM tomcat:8 # Take the war and copy to webapps of tomcat -COPY target/*.war /usr/local/tomcat/webapps/myweb.war +COPY /opt/docker/*.war /usr/local/tomcat/webapps/myweb.war From 22b422f21224a8ad79524d463972dca7897e5d33 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Thu, 7 Nov 2019 20:38:59 +0530 Subject: [PATCH 065/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cce0f3c0fec..770ca3e0f87 100755 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ in.javahome myweb war - 0.0.7-SNAPSHOT + 0.0.7 my-app http://maven.apache.org From d8795f941936cbff5ff142ba4a6f008c67aacf23 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Thu, 7 Nov 2019 20:39:46 +0530 Subject: [PATCH 066/127] Update index.html --- src/main/webapp/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html index 3ac18b398bd..d741fbdc309 100755 --- a/src/main/webapp/index.html +++ b/src/main/webapp/index.html @@ -11,7 +11,7 @@
-

Javahome Webhook demo!!!!

+

Javahome Webhook demo @ 2019

From 5d6fa071e872b8711f7f26205826a3374c6410f0 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Tue, 3 Dec 2019 17:09:11 +0530 Subject: [PATCH 067/127] Update pom.xml --- pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pom.xml b/pom.xml index 770ca3e0f87..4528f727dca 100755 --- a/pom.xml +++ b/pom.xml @@ -7,6 +7,13 @@ 0.0.7 my-app http://maven.apache.org + + + kammana + http://172.31.9.115:9000/ + + + From 676c91429bb5fbfbde23fcc8c15dbd7b0d080965 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Tue, 3 Dec 2019 17:10:15 +0530 Subject: [PATCH 068/127] Update pom.xml --- pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pom.xml b/pom.xml index 4528f727dca..0f10faed0bb 100755 --- a/pom.xml +++ b/pom.xml @@ -13,6 +13,8 @@ http://172.31.9.115:9000/ + + From cca6d79b3af09e390b049723e444a7eccdadbf72 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Tue, 3 Dec 2019 17:13:36 +0530 Subject: [PATCH 069/127] Update pom.xml --- pom.xml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 0f10faed0bb..189c7b1c8fb 100755 --- a/pom.xml +++ b/pom.xml @@ -13,11 +13,10 @@ http://172.31.9.115:9000/ - - + - + org.apache.poi poi From 94de8d9d4917ff81d7df2e4f235146ec6b18abfe Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Thu, 5 Dec 2019 08:30:12 +0530 Subject: [PATCH 070/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 189c7b1c8fb..1c39dc5c13b 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://172.31.9.115:9000/ + http://172.31.43.33:9000/ From 99a1674d7c81aa1763977f3534f8b3812f43fb57 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Fri, 20 Dec 2019 08:04:45 +0530 Subject: [PATCH 071/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1c39dc5c13b..2abebcf2b0f 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://172.31.43.33:9000/ + http://172.31.41.214:9000/ From 9559a7626cafb325324ea64f77a1f8e1da1b0233 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 27 Jan 2020 00:45:52 +0530 Subject: [PATCH 072/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2abebcf2b0f..cb63fe7da23 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://172.31.41.214:9000/ + http://172.31.36.32:9000/ From f17f9a0ed75a9c3d580e92d3d8bb612302f9b108 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Tue, 28 Jan 2020 10:37:44 +0530 Subject: [PATCH 073/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cb63fe7da23..120f20b44a6 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://172.31.36.32:9000/ + http://13.233.63.133:9000/ From 3b941185522058d0e8467c294243fa8a636c06a8 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 10 Feb 2020 21:08:46 +0530 Subject: [PATCH 074/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 120f20b44a6..bfcf8406469 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.233.63.133:9000/ + http://99.79.6.51:9000/ From cee4108d448518c448ab84742721778a29c6219a Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Thu, 20 Feb 2020 12:03:56 +0530 Subject: [PATCH 075/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bfcf8406469..cb203500fa7 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://99.79.6.51:9000/ + http://13.233.90.8:9000/ From acf9de79334e65529d4b3373607f0448bed2c54d Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Tue, 10 Mar 2020 19:23:54 +0530 Subject: [PATCH 076/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cb203500fa7..71bd7f6fcaa 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.233.90.8:9000/ + http://13.232.30.56:9000/ From 8832902ed7ac3ae463977fd6343d86af41bd2b32 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Sat, 11 Jul 2020 14:37:59 +0530 Subject: [PATCH 077/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 71bd7f6fcaa..ed2009502ef 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.232.30.56:9000/ + http://13.127.194.8:9000/ From 1dd069acd127adf9fc746fb971fda8bbb660ef93 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Sat, 11 Jul 2020 16:34:25 +0530 Subject: [PATCH 078/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ed2009502ef..3bc94e8aa40 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.127.194.8:9000/ + http://13.232.63.180:9000/ From 8479645090a3b2006ec84715ac2bd66f353f7028 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Tue, 4 Aug 2020 16:30:43 +0530 Subject: [PATCH 079/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3bc94e8aa40..16ede71e68e 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.232.63.180:9000/ + http://15.207.117.149:9000/ From 96a349a793370d3620620c2ac44438f2b62d4ae9 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Tue, 11 Aug 2020 08:57:12 +0530 Subject: [PATCH 080/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 16ede71e68e..b09ba5c1f1c 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://15.207.117.149:9000/ + http://54.169.138.66:9000/ From e65a57537d568fe58ea75bb009d02566db2ff226 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 17 Aug 2020 20:37:25 +0530 Subject: [PATCH 081/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b09ba5c1f1c..3a835e96a8b 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://54.169.138.66:9000/ + http://13.235.244.212:9000/ From ee347a08a0fcf5076b2237f81b819ad825c91947 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Sun, 13 Sep 2020 08:40:38 +0530 Subject: [PATCH 082/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3a835e96a8b..80ca2502b7f 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.235.244.212:9000/ + http://3.0.206.5:9000/ From 1eceaebb64d3578ff1e2c5b4eb324541a6b84e3c Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 5 Oct 2020 17:57:02 +0530 Subject: [PATCH 083/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 80ca2502b7f..2d04050d71f 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://3.0.206.5:9000/ + http://54.254.166.121:9000/ From 5b8056bda3104da08f281fa4c34126f14a981a76 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Wed, 14 Oct 2020 07:44:31 +0530 Subject: [PATCH 084/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2d04050d71f..de96d804d92 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://54.254.166.121:9000/ + http://54.179.201.218:9000/ From 4aad557f281ee8a830df9fc31476194bdc93631c Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Thu, 5 Nov 2020 12:10:08 +0530 Subject: [PATCH 085/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index de96d804d92..7878237b2e8 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://54.179.201.218:9000/ + http://13.229.102.239:9000/ From c12ca2d4c1fbdb25501b9a1e6e729e1cc127a292 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Wed, 18 Nov 2020 16:45:05 +0530 Subject: [PATCH 086/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7878237b2e8..57ae90ada5b 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.229.102.239:9000/ + http://13.212.7.60:9000/ From b9b528753523e07edde6e5bf158827a08eed0df1 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Tue, 1 Dec 2020 16:38:14 +0530 Subject: [PATCH 087/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 57ae90ada5b..134eb924e4f 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.212.7.60:9000/ + http://54.179.114.69:9000/ From 8a8dfdeb5bfe086f569ac1ced149d9be6479ade1 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Wed, 9 Dec 2020 07:15:55 +0530 Subject: [PATCH 088/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 134eb924e4f..c1e2dc8cf60 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://54.179.114.69:9000/ + http://13.229.238.34:9000/ From fc885a93483f645541ed0f935ddedaf7c95b5eeb Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Sat, 26 Dec 2020 08:43:49 +0530 Subject: [PATCH 089/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c1e2dc8cf60..9391b349fc6 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.229.238.34:9000/ + http://3.25.181.122:9000/ From 2c2421a5b394588b42a54812ec94b1180f40ed07 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Fri, 22 Jan 2021 16:37:22 +0530 Subject: [PATCH 090/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9391b349fc6..83b86c4fa8a 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://3.25.181.122:9000/ + http://3.26.49.79:9000/ From 21497389a0e0dab321d1e19799c1be3419292397 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 1 Feb 2021 07:36:24 +0530 Subject: [PATCH 091/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 83b86c4fa8a..b475309961f 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://3.26.49.79:9000/ + http://54.255.176.77:9000/ From 077b4d232d42faef6080e50e0cebb355b5c369a5 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Tue, 9 Feb 2021 07:36:11 +0530 Subject: [PATCH 092/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b475309961f..dc87a98401f 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://54.255.176.77:9000/ + http://54.255.179.104:9000/ From c7d4928dcd08bb2fc356d39a77c91995d582cc9e Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Tue, 23 Feb 2021 08:48:48 +0530 Subject: [PATCH 093/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dc87a98401f..420db94fb90 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://54.255.179.104:9000/ + http://54.169.180.237:9000/ From 7df47374be73e62d619be3bdfcf5598298c1000b Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Sat, 13 Mar 2021 12:17:50 +0530 Subject: [PATCH 094/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 420db94fb90..84633256232 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://54.169.180.237:9000/ + http://99.79.39.235:9000/ From 2568a5816f7ad2421358738f4b0ff800b6a59f7e Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Sat, 13 Mar 2021 13:58:40 +0530 Subject: [PATCH 095/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 84633256232..efebc14d354 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://99.79.39.235:9000/ + http://35.182.31.220:9000/ From dcb491617d87e7abf2b636f704168f1339dd7eb7 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Sat, 27 Mar 2021 17:44:41 +0530 Subject: [PATCH 096/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index efebc14d354..119c9349db0 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://35.182.31.220:9000/ + http://3.96.54.120:9000/ From 7c61931c96290db05ffe813450b40c9d9283cb98 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 19 Apr 2021 06:41:58 +0530 Subject: [PATCH 097/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 119c9349db0..06072a881b6 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://3.96.54.120:9000/ + http://15.223.116.58:9000/ From 96154e2b10211531fb86fd6309314d4abd1ee12e Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Thu, 13 May 2021 14:55:56 +0530 Subject: [PATCH 098/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 06072a881b6..58e54b8ddd9 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://15.223.116.58:9000/ + http://3.8.181.181:9000/ From ee91296a086baea535d085ad99b9ca0d49734142 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Sun, 16 May 2021 16:06:59 +0530 Subject: [PATCH 099/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 58e54b8ddd9..169b557a2ff 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://3.8.181.181:9000/ + http://18.130.175.115:9000/ From 32c6d2765772ed7e43c5212201622d8072821692 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Tue, 25 May 2021 09:18:07 +0530 Subject: [PATCH 100/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 169b557a2ff..baaff981c12 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://18.130.175.115:9000/ + http://3.113.22.134:9000/ From df9d4d4148806c1dc6ada5394549810b26de4d3a Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Fri, 11 Jun 2021 06:57:40 +0530 Subject: [PATCH 101/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index baaff981c12..9ebc7917015 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://3.113.22.134:9000/ + http://52.198.180.204:9000/ From 8c5574cbb1f22cb82634e1dc4c8448b32681dc59 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Fri, 18 Jun 2021 23:00:14 +0530 Subject: [PATCH 102/127] Add files via upload --- myweb-8.2.0.war | Bin 0 -> 3402 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 myweb-8.2.0.war diff --git a/myweb-8.2.0.war b/myweb-8.2.0.war new file mode 100644 index 0000000000000000000000000000000000000000..c23c9a8894becc2794e8f40bc4ac9c4aad4d801e GIT binary patch literal 3402 zcmWIWW@h1H0D;Xe8-laoYW$?Q5+1b zfHA!^b*vnUu%cw_6^>@v|vODT^&nP>g>6mha=q_&K{y1{i+P*n1@OV~3n!Y!L&e zVvepb(}5*r+a4EZRIHy=BC__==FkbfUDc}pr}ET)YkBznH8U(_a4>8H`N#6FgApSG zLkJTCgDsMOU~vwNMR=q@f)*)goD*}BOLG!S@{9Dq>U$^b_hNPwIJVzYufC_V(=cmc zYnT+bc=pjl4FVid8Y}Pajy}`2H+ttC%}RA??SqHdKP)_Q^K_#?P)cI@zPU5sn{Tk+ zAAg@gZ^L~D$-Po#**BC!)|afgobB{;i@jO}v$U2|^^)Y$>8|^{J99a@DNUMTV}TNiK!6}=hVv&H`uF8 zc=r0!lz@Jt$*;tXpD&DjCM?Bo=FL>P`tGW4_D}Du%{t`VTCnL^n$z)KPUXkxh41}C zCp?l+{l{5uGvRRInor&ZYUieI_P@a1EtDm*x?Aa$%_oEn#&d+(c8+>SG^*Pea-?A%;?L}Y*xSENtz z^#WidR01)mw8_j%Nv+V!DlSkx>&SJ;K)~(cR@@PY<4+V4lacMG?P7)I1K!n3ME2CUF82@n04O1`T4g7v$%Ha_rWSgMGIQ1Z>sg z1q+Y+CGd;vwA+4lQP|p$uiHMUZ9XV)d*WMxAHVx#nG(g9#C3^u&NP4g{g09GwW!U_ zm(ty@W_+*Q_H|!u@Twz>CW31U`&P#}77!$rf+9UJ2IbzVwd;%B?Z$m*m*pU}5O({?@E zyP+q}`3PV7EYV1oSBIyDaHcg$52krwfAK3g5A6JzTWaBc>ZMR<>x>2UOsvC{EGZn={r0-lXkGT*B<_V zz<)W@rA(U@e7lx@4%=6j$Yh=o#>=&Z|E^?l)Rw&LKmHlLlkeTA=;f*R35z+rv6wL_ zBuxB4b3gZ{m^I-)S1tHf#8c|DmG_K0llyV;?loWRa(DFqjd#*9QIPQ|F|blSy(!_I z^6En-X0m;MT|Xw|U-`&q`Edd-%L>!Ja>G+{*OG+Y?auwGRLnC|TA|e;)!oJ$*|SMm z`LBcI@vnVOQ{S&n zu9uFdZ=lDjkPp5(-e(^N@#&pqHqsX5IV-}Wv!>_l+Mcr_PR?^gdw64Mcm`0NC=J|F<3TN+rKq3Z^>MQ~dWYKj&kOBz=ZV;r=aLj)D}@(p3?Pj-x;LiR1hkswnM WrCoqGD;vlF0U+!GM$js7DF6UdXhDns literal 0 HcmV?d00001 From 742f058a2bd4702f8d9434dadc1870f9ed503250 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Wed, 30 Jun 2021 07:57:09 +0530 Subject: [PATCH 103/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9ebc7917015..012bb2b839b 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://52.198.180.204:9000/ + http://13.231.156.165:9000/ From 31b232fd8394c6e1d1df6957162603fe31725c53 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 26 Jul 2021 12:45:04 +0530 Subject: [PATCH 104/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 012bb2b839b..aaef7adf991 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.231.156.165:9000/ + http://52.193.62.245:9000/ From 55be078f6301e04163a5c0b585a7e9e670d8dcc1 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 2 Aug 2021 14:41:12 +0530 Subject: [PATCH 105/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aaef7adf991..fe0ae886e52 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://52.193.62.245:9000/ + http://18.182.11.64:9000/ From 096d075b4f39ede2564903028cf8a84601f2ef5c Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Thu, 2 Sep 2021 10:24:22 +0530 Subject: [PATCH 106/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fe0ae886e52..b23d56a6c5e 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://18.182.11.64:9000/ + http://13.230.248.132:9000/ From 8d34c65e04369e5be84ecd17e1f979e004db105b Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Thu, 30 Sep 2021 12:41:51 +0530 Subject: [PATCH 107/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b23d56a6c5e..facecc49a79 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.230.248.132:9000/ + http://18.183.130.136:9000/ From fade58ea45c52b3623bb06a350007891f6d1e17e Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Tue, 5 Oct 2021 19:10:08 +0530 Subject: [PATCH 108/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index facecc49a79..dffb70f106f 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://18.183.130.136:9000/ + http://18.183.184.204:9000/ From c4ee71a67aa80ab552f970a7b1f078beab012ff2 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 1 Nov 2021 08:30:27 +0530 Subject: [PATCH 109/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dffb70f106f..49c532c5344 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://18.183.184.204:9000/ + http://18.183.233.129:9000/ From 71f43a67a2b68c287bac28b850b7f9bf86b7592e Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Thu, 18 Nov 2021 06:42:36 +0530 Subject: [PATCH 110/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 49c532c5344..7ba5990126a 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://18.183.233.129:9000/ + http://54.250.26.188:9000/ From 33f0832955de49df842cfa0fb7ed0ce0a07bd7cd Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Wed, 24 Nov 2021 09:45:15 +0530 Subject: [PATCH 111/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7ba5990126a..1c11df35945 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://54.250.26.188:9000/ + http://18.181.237.5:9000/ From b549716d31ce3c8461156c2effaa07602f8d7493 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Tue, 14 Dec 2021 19:07:45 +0530 Subject: [PATCH 112/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1c11df35945..3c356f8e620 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://18.181.237.5:9000/ + http://13.231.129.56:9000/ From 7e1c18a0ea2c12ffb2b6fc6aca052a7de10eb6db Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 20 Dec 2021 12:41:48 +0530 Subject: [PATCH 113/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3c356f8e620..39dcdadcf23 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.231.129.56:9000/ + http://13.231.3.67:9000/ From 758efaffe927f6e86d10f32a6677724be48d0712 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Wed, 5 Jan 2022 11:54:54 +0530 Subject: [PATCH 114/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 39dcdadcf23..32037171da4 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.231.3.67:9000/ + http://18.183.231.126:9000/ From 3a35c33fd1cb436ab94132c42ec1c953bab1964b Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Thu, 20 Jan 2022 06:44:46 +0530 Subject: [PATCH 115/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 32037171da4..232c3589864 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://18.183.231.126:9000/ + http://13.115.254.221:9000/ From 6ed445c52739cbf95f6d51b0becae440f2864c75 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Fri, 4 Feb 2022 10:11:41 +0530 Subject: [PATCH 116/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 232c3589864..fbf33d5a8f3 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.115.254.221:9000/ + http://18.181.96.215:9000/ From 64dfb782ca962358bd720d81cce35c43d1a4d486 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 21 Feb 2022 09:09:20 +0530 Subject: [PATCH 117/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fbf33d5a8f3..bbc65ae7c34 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://18.181.96.215:9000/ + http://52.196.178.11:9000/ From 1bc3acdff5a2f9ee9ed44a64158eb51439efa401 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 7 Mar 2022 18:14:37 +0530 Subject: [PATCH 118/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bbc65ae7c34..b43b80fc511 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://52.196.178.11:9000/ + http://13.230.220.13:9000/ From 456871f3ab46d0743454bf8a2bed0ebaed997630 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 28 Mar 2022 10:18:05 +0530 Subject: [PATCH 119/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b43b80fc511..cbec4b5e6ec 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.230.220.13:9000/ + http://18.183.127.61:9000/ From e5e466e4298c2f1df7d345923a63afe21a61bbbd Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Fri, 8 Apr 2022 19:41:32 +0530 Subject: [PATCH 120/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cbec4b5e6ec..61ca02b2dcb 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://18.183.127.61:9000/ + http://13.231.118.186:9000/ From ac1f917b4e9c657b85d7729f3d4751f2d1a3c553 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Sat, 30 Apr 2022 10:13:58 +0530 Subject: [PATCH 121/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 61ca02b2dcb..29fb075be3a 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://13.231.118.186:9000/ + http://54.199.181.137:9000/ From 946c5aba0db17bf2531ab9aa604a040eb0038305 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 23 May 2022 06:43:34 +0530 Subject: [PATCH 122/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 29fb075be3a..6b08edb8566 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://54.199.181.137:9000/ + http://54.178.6.114:9000/ From eb80bb338bf122bffc79a73004321cdbfe2dcf67 Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 6 Jun 2022 10:07:04 +0530 Subject: [PATCH 123/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6b08edb8566..c2706025589 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://54.178.6.114:9000/ + http://35.78.191.255:9000/ From 46a55992c79406bfaf742c6ee3fadc4afb83fa7b Mon Sep 17 00:00:00 2001 From: srinivas1987devops <54583870+srinivas1987devops@users.noreply.github.com> Date: Mon, 20 Jun 2022 18:56:32 +0530 Subject: [PATCH 124/127] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c2706025589..e11baeb06c1 100755 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ kammana - http://35.78.191.255:9000/ + http://35.78.103.43:9000/ From a7d07f2ecc5017de0faf57c5892f519c1f5e16ef Mon Sep 17 00:00:00 2001 From: venkykosini <104294442+venkykosini@users.noreply.github.com> Date: Tue, 24 Jan 2023 15:52:50 +0530 Subject: [PATCH 125/127] Update pom.xml --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e11baeb06c1..4b75fe0cb6d 100755 --- a/pom.xml +++ b/pom.xml @@ -56,8 +56,8 @@ maven-compiler-plugin 3.6.1 - 1.7 - 1.7 + 1.6 + 1.6 From 66dacb4012cf2aecca7fc3d0557a8afc0f082120 Mon Sep 17 00:00:00 2001 From: venkykosini <104294442+venkykosini@users.noreply.github.com> Date: Wed, 29 Nov 2023 17:04:44 +0530 Subject: [PATCH 126/127] Create .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000000..f9cd4e5f9a4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.venkatesh From 6583ae907f7a6226df05dc0704c4731af0d92505 Mon Sep 17 00:00:00 2001 From: venkykosini <104294442+venkykosini@users.noreply.github.com> Date: Wed, 29 Nov 2023 17:05:09 +0530 Subject: [PATCH 127/127] Create venkatesh --- venkatesh | 1 + 1 file changed, 1 insertion(+) create mode 100644 venkatesh diff --git a/venkatesh b/venkatesh new file mode 100644 index 00000000000..a4e60c97846 --- /dev/null +++ b/venkatesh @@ -0,0 +1 @@ +Hi venkatesh how are you