From 96e227bf1762e3c70db4cb72b861283e777fca99 Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Mon, 4 Apr 2022 21:25:05 +0530 Subject: [PATCH 01/26] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2d4e291f5..1b9db7ace 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ Hello World! (WAR-style) +today is monday =============== This is the simplest possible Java webapp for testing servlet container deployments. It should work on any container and requires no other dependencies or configuration. From 144285b37c29d37545eefb9d5c8b4cc2b52582b0 Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Wed, 6 Apr 2022 13:11:06 +0530 Subject: [PATCH 02/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1b9db7ace..3a64bd7fc 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ Hello World! (WAR-style) -today is monday +today is wednesday =============== This is the simplest possible Java webapp for testing servlet container deployments. It should work on any container and requires no other dependencies or configuration. From 53cbefa177a9ecfc3afe0bd068c672e691d0a325 Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Wed, 6 Apr 2022 13:33:42 +0530 Subject: [PATCH 03/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a64bd7fc..402f1c6d1 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ Hello World! (WAR-style) -today is wednesday +today is wednesday hi =============== This is the simplest possible Java webapp for testing servlet container deployments. It should work on any container and requires no other dependencies or configuration. From 11fa567e4779bc58491d0f37c3a2b9ac5e3d0b5a Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Wed, 6 Apr 2022 13:36:39 +0530 Subject: [PATCH 04/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 402f1c6d1..a697ba55c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ Hello World! (WAR-style) -today is wednesday hi +today is wednesday hi all =============== This is the simplest possible Java webapp for testing servlet container deployments. It should work on any container and requires no other dependencies or configuration. From 8ddafafaa393bf69adac1c32fb2dc3bcd70a7b9a Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Wed, 6 Apr 2022 13:41:57 +0530 Subject: [PATCH 05/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a697ba55c..4d0a2ddb7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ Hello World! (WAR-style) -today is wednesday hi all +today is wednesday hi all welcome =============== This is the simplest possible Java webapp for testing servlet container deployments. It should work on any container and requires no other dependencies or configuration. From a98ec4f28e685b74b83b0468b0361ffcc8df49c3 Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Wed, 6 Apr 2022 13:53:07 +0530 Subject: [PATCH 06/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d0a2ddb7..ed934ee2d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ Hello World! (WAR-style) -today is wednesday hi all welcome +today is wednesday =============== This is the simplest possible Java webapp for testing servlet container deployments. It should work on any container and requires no other dependencies or configuration. From a423f49d14e608c79022ddff10b55144aa36d946 Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Sun, 10 Apr 2022 21:29:47 +0530 Subject: [PATCH 07/26] Create Jenkinsfile --- Jenkinsfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..30ab1cefa --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,21 @@ +pipeline { + agent { label 'java' } + stages { + stage('checkout') { + steps { + sh 'git clone https://github.com/darshanbguru/hello-world-war.git' + } + } + +stage('build') { + steps { + sh 'mvn clean package' + } + } +stage('deploy') { +steps { +sh 'cp /home/slave-1/workspace/harsha/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' + } +} +} +} From 5828a1c8b5ec864a7db11cdcc7c51ad9d4c26304 Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Sun, 10 Apr 2022 21:38:39 +0530 Subject: [PATCH 08/26] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 30ab1cefa..73c66fd6d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,7 @@ stage('build') { } stage('deploy') { steps { -sh 'cp /home/slave-1/workspace/harsha/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' +sh 'cp /home/slave-1/workspace/harsha1/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' } } } From d6befa1270cb022e245cb895b7eceeb27479248b Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Sun, 10 Apr 2022 21:48:16 +0530 Subject: [PATCH 09/26] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 73c66fd6d..0c6d3d585 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,7 @@ stage('build') { } stage('deploy') { steps { -sh 'cp /home/slave-1/workspace/harsha1/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' +sh 'cp /home/slave-1/harsha1/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' } } } From 6752ba5bd9f45a34ad163cfb5bc175f70d5a1364 Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Sun, 10 Apr 2022 21:48:44 +0530 Subject: [PATCH 10/26] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0c6d3d585..2fed5f9c7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,7 @@ stage('build') { } stage('deploy') { steps { -sh 'cp /home/slave-1/harsha1/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' +sh 'cp /home/slave-1/harsha2/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' } } } From 5eefefef820a4a13fbd6fa1b4bac698eca809ff1 Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Sun, 10 Apr 2022 21:54:17 +0530 Subject: [PATCH 11/26] Update Jenkinsfile --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2fed5f9c7..fdf7c32cc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ pipeline { stages { stage('checkout') { steps { - sh 'git clone https://github.com/darshanbguru/hello-world-war.git' + sh 'https://github.com/SarithaTptr/hello-world-war.git' } } @@ -14,7 +14,7 @@ stage('build') { } stage('deploy') { steps { -sh 'cp /home/slave-1/harsha2/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' +sh 'cp /home/slave-1/harsha3/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' } } } From fd0460ef4d5281fbe9522c80950b9460dd6b52cc Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Sun, 10 Apr 2022 22:02:08 +0530 Subject: [PATCH 12/26] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index fdf7c32cc..f7d2afa0e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,7 @@ stage('build') { } stage('deploy') { steps { -sh 'cp /home/slave-1/harsha3/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' +sh 'cp /home/slave-1/harsha4/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' } } } From 9a8b7225791ec7ea934dd0639b561221ab07b266 Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Sun, 10 Apr 2022 22:13:47 +0530 Subject: [PATCH 13/26] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f7d2afa0e..44acad4a7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,7 @@ stage('build') { } stage('deploy') { steps { -sh 'cp /home/slave-1/harsha4/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' +sh 'cp /home/slave-1/workspace/harsha4/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' } } } From e6ad1551112e392d9ea4fd8c85905382b0168d30 Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Sun, 10 Apr 2022 22:14:15 +0530 Subject: [PATCH 14/26] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 44acad4a7..3ed58f1d4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,7 @@ stage('build') { } stage('deploy') { steps { -sh 'cp /home/slave-1/workspace/harsha4/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' +sh 'cp /home/slave-1/workspace/harsha5/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' } } } From b69bfa6af3b9dc39c6f3ceb2ee89b1613c76593a Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Sun, 10 Apr 2022 22:23:18 +0530 Subject: [PATCH 15/26] Update Jenkinsfile --- Jenkinsfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3ed58f1d4..a35a06efb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,10 +12,5 @@ stage('build') { sh 'mvn clean package' } } -stage('deploy') { -steps { -sh 'cp /home/slave-1/workspace/harsha5/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' - } -} } } From 6f1577dc8ce3e3de6457bde6f7fdc2b10e1307e8 Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Sun, 10 Apr 2022 22:37:34 +0530 Subject: [PATCH 16/26] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index a35a06efb..2cc59358b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ pipeline { stages { stage('checkout') { steps { - sh 'https://github.com/SarithaTptr/hello-world-war.git' + sh 'git clone https://github.com/SarithaTptr/hello-world-war.git' } } From a7cc3ab7c6ad5fc5ecfb2105ec7ba2b12bd231ac Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Sun, 10 Apr 2022 22:45:12 +0530 Subject: [PATCH 17/26] Update Jenkinsfile --- Jenkinsfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 2cc59358b..4f586cf97 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,5 +12,10 @@ stage('build') { sh 'mvn clean package' } } + stage('deploy') { +steps { +sh 'cp /home/slave-1/workspace/new11/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' + } +} } } From db366e3db3aa8e0af9b19820fbf09de0c5d2b5b8 Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Sun, 10 Apr 2022 22:46:14 +0530 Subject: [PATCH 18/26] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4f586cf97..08e6e9d7f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,7 @@ stage('build') { } stage('deploy') { steps { -sh 'cp /home/slave-1/workspace/new11/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' +sh 'cp /home/slave-1/workspace/harsha12/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' } } } From 0598563192d71c9685818067de9e89393b06dd3b Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Mon, 11 Apr 2022 11:50:07 +0530 Subject: [PATCH 19/26] Update Jenkinsfile --- Jenkinsfile | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 08e6e9d7f..79367398e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,16 +6,5 @@ pipeline { sh 'git clone https://github.com/SarithaTptr/hello-world-war.git' } } - -stage('build') { - steps { - sh 'mvn clean package' - } - } - stage('deploy') { -steps { -sh 'cp /home/slave-1/workspace/harsha12/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' - } -} } } From 9b49ba93c2d7a401657d5fa3cf87731572841742 Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Mon, 11 Apr 2022 11:55:41 +0530 Subject: [PATCH 20/26] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 79367398e..7d80b2a28 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,5 @@ pipeline { - agent { label 'java' } + agent { label 'java4' } stages { stage('checkout') { steps { From 3ce38090a7cbee99f06022379538b4806448c4bc Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Mon, 11 Apr 2022 11:59:30 +0530 Subject: [PATCH 21/26] Update Jenkinsfile --- Jenkinsfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 7d80b2a28..9ad681cdc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,5 +6,10 @@ pipeline { sh 'git clone https://github.com/SarithaTptr/hello-world-war.git' } } + stage('build') { + steps { + sh 'mvn clean package' + } + } } } From bbc96712c7bcaf910b6053106746daa34ab73cef Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Mon, 11 Apr 2022 12:06:05 +0530 Subject: [PATCH 22/26] Update Jenkinsfile --- Jenkinsfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 9ad681cdc..680eac4eb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,5 +11,10 @@ pipeline { sh 'mvn clean package' } } + stage('deploy') { + steps { + sh 'cp /home/slave-3/workspace/42/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' + } + } } } From 5028bef4a51d54653816122ac70206f7fc81883e Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Mon, 11 Apr 2022 12:09:42 +0530 Subject: [PATCH 23/26] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 680eac4eb..53b642a48 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,7 +13,7 @@ pipeline { } stage('deploy') { steps { - sh 'cp /home/slave-3/workspace/42/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' + sh 'cp /home/slave-3/workspace/43/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' } } } From 1ad5b2c1140eb27a17bc21e8b88222d87e2e112e Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Mon, 11 Apr 2022 12:12:03 +0530 Subject: [PATCH 24/26] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 53b642a48..ab26bcc9d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,7 +13,7 @@ pipeline { } stage('deploy') { steps { - sh 'cp /home/slave-3/workspace/43/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' + sh 'cp /home/slave-3/workspace/44/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' } } } From f689006512d7d01b7e8c91659be79378399c66c6 Mon Sep 17 00:00:00 2001 From: SarithaTptr <102283063+SarithaTptr@users.noreply.github.com> Date: Mon, 11 Apr 2022 12:25:36 +0530 Subject: [PATCH 25/26] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index ab26bcc9d..75e400a88 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,7 +13,7 @@ pipeline { } stage('deploy') { steps { - sh 'cp /home/slave-3/workspace/44/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' + sh 'cp /home/slave-3/workspace/45/target/hello-world-war-1.0.0.war /opt/apache-tomcat-9.0.62/webapps' } } } From cea88b254845e7e84892bff6d592ba609d759dd2 Mon Sep 17 00:00:00 2001 From: Sahanamahadev <96735509+Sahanamahadev@users.noreply.github.com> Date: Thu, 14 Apr 2022 21:34:19 +0530 Subject: [PATCH 26/26] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ed934ee2d..1c2d5d6fe 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ Hello World! (WAR-style) today is wednesday +hi saritha this sahana =============== This is the simplest possible Java webapp for testing servlet container deployments. It should work on any container and requires no other dependencies or configuration.