From 5028c551991c86b9745c96c924ab035fc562facd Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Sat, 5 Nov 2022 20:19:26 +0530 Subject: [PATCH 01/26] Update pom.xml --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index 6f3a1ad..82daa4e 100755 --- a/pom.xml +++ b/pom.xml @@ -31,6 +31,7 @@ + org.apache.maven.plugins maven-jar-plugin 3.2.0 From fe865c6eb7f5f3a68ba1ef3006d46d5c8604a2a7 Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Sat, 5 Nov 2022 20:24:04 +0530 Subject: [PATCH 02/26] Update pom.xml --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index 82daa4e..5d5af6e 100755 --- a/pom.xml +++ b/pom.xml @@ -32,6 +32,7 @@ + org.apache.maven.plugins maven-jar-plugin 3.2.0 From ab4c1ea37d1bb2f707e6232f86bcf0c76452872d Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Sat, 5 Nov 2022 20:28:42 +0530 Subject: [PATCH 03/26] Update pom.xml --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index 5d5af6e..13f6e64 100755 --- a/pom.xml +++ b/pom.xml @@ -33,6 +33,7 @@ + org.apache.maven.plugins maven-jar-plugin 3.2.0 From 63476953ee2dc51e7e8832aaa155f3c98e0cdc52 Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Tue, 8 Nov 2022 11:34:02 +0530 Subject: [PATCH 04/26] Create Jenkinsfile --- Jenkinsfile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..bcdc409 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,34 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + sh 'mvn -B -Dskiptests clean install' + } + } + stage('Test") { + steps { + sh 'mvn test' + } + post { + always { + junit 'target/surefire-reports/*.xml' + } + } + } + stage(*'Deliver') { + steps { + sh './scripts/deliver.sh + } + } + } + } + + + + + + + + + From 035a4a7116ff95a26d20422e31dac1095f90f675 Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Tue, 8 Nov 2022 12:46:24 +0530 Subject: [PATCH 05/26] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index bcdc409..79dbdc7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,7 +6,7 @@ pipeline { sh 'mvn -B -Dskiptests clean install' } } - stage('Test") { + stage('Test') { steps { sh 'mvn test' } From 3d301105509fe2e28537f61f8395cc241b76ffba Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Tue, 8 Nov 2022 12:46:45 +0530 Subject: [PATCH 06/26] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 79dbdc7..f57c2db 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,7 +16,7 @@ pipeline { } } } - stage(*'Deliver') { + stage('Deliver') { steps { sh './scripts/deliver.sh } From 4e2103930235181a3c020d0552db687b9a033d36 Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Tue, 8 Nov 2022 12:47:37 +0530 Subject: [PATCH 07/26] Update Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f57c2db..1b91892 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,7 +18,7 @@ pipeline { } stage('Deliver') { steps { - sh './scripts/deliver.sh + sh './scripts/deliver.sh' } } } From 7f8f30a876c2a7bf854cdcab17f7e0408b8c04da Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Tue, 8 Nov 2022 12:54:43 +0530 Subject: [PATCH 08/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2e9ed99..58f2dbf 100644 --- a/README.md +++ b/README.md @@ -14,4 +14,4 @@ to run scripts/deliver.sh -this is a uild trigger test + From fb1e869881097004b6e5125f14e447a11f9b54f8 Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Wed, 9 Nov 2022 14:39:29 +0530 Subject: [PATCH 09/26] Update pom.xml --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index 13f6e64..1b7308d 100755 --- a/pom.xml +++ b/pom.xml @@ -34,6 +34,7 @@ + org.apache.maven.plugins maven-jar-plugin 3.2.0 From 4be98af9dd942199a54751799ddbd5ce4d20e57c Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Wed, 9 Nov 2022 14:40:48 +0530 Subject: [PATCH 10/26] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1b7308d..ddf6b8e 100755 --- a/pom.xml +++ b/pom.xml @@ -34,7 +34,7 @@ - + org.apache.maven.plugins maven-jar-plugin 3.2.0 From fbdf02c3a726b692055d91078f7a52804c0b087c Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Wed, 9 Nov 2022 14:43:10 +0530 Subject: [PATCH 11/26] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 58f2dbf..9468a83 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ mvn clean install to run +i have edited scripts/deliver.sh From bda75d370d81b9a4c08b1a4f7d4d6feb7d446e7d Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Wed, 9 Nov 2022 14:45:32 +0530 Subject: [PATCH 12/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9468a83..53eead9 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ mvn clean install to run -i have edited + scripts/deliver.sh From 19ff03074de49e39e115b057d52eeeefa29fe867 Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Wed, 9 Nov 2022 19:12:52 +0530 Subject: [PATCH 13/26] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 53eead9..dd693a2 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,7 @@ mvn clean install to run - - +this is my changes scripts/deliver.sh From 6918f5a38ae0f6e7fe22d0ee9a10bb6fca839596 Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Wed, 9 Nov 2022 19:14:57 +0530 Subject: [PATCH 14/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dd693a2..9e49b51 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ mvn clean install to run -this is my changes +this is my changes 2nd scripts/deliver.sh From 1b58adc9a3c0fa193eeb3d5ab4e235f05d7320bc Mon Sep 17 00:00:00 2001 From: vinodpalleda <45008948+vinodpalleda@users.noreply.github.com> Date: Wed, 9 Nov 2022 23:04:52 +0530 Subject: [PATCH 15/26] Update App.java --- src/main/java/com/mycompany/app/App.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/mycompany/app/App.java b/src/main/java/com/mycompany/app/App.java index 5a6d572..3a966a8 100644 --- a/src/main/java/com/mycompany/app/App.java +++ b/src/main/java/com/mycompany/app/App.java @@ -6,7 +6,7 @@ public class App { - private final String message = "Hello World!"; + private final String message = "Hello World!fdgdfgdfgdfgdfgsdfg"; public App() {} From a4c2df10a01616ccc4c0af81552f6fa4759f1bcd Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Wed, 9 Nov 2022 23:17:01 +0530 Subject: [PATCH 16/26] Update App.java --- src/main/java/com/mycompany/app/App.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/mycompany/app/App.java b/src/main/java/com/mycompany/app/App.java index 3a966a8..5a6d572 100644 --- a/src/main/java/com/mycompany/app/App.java +++ b/src/main/java/com/mycompany/app/App.java @@ -6,7 +6,7 @@ public class App { - private final String message = "Hello World!fdgdfgdfgdfgdfgsdfg"; + private final String message = "Hello World!"; public App() {} From 10ecb690f09b91f8c9fd0183a90e568593c88d89 Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Thu, 10 Nov 2022 00:21:29 +0530 Subject: [PATCH 17/26] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ddf6b8e..07ebdba 100755 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.mycompany.app my-app - jar + war 1.0-SNAPSHOT my-app http://maven.apache.org From 73e68e7c731aafed8e5babc9e157e0aa6c063852 Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Thu, 10 Nov 2022 00:37:43 +0530 Subject: [PATCH 18/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e49b51..4748e9e 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ mvn clean install to run -this is my changes 2nd +this is my changes 4 scripts/deliver.sh From 3bd114e226b77fa8797a9df4efa15f1da19287fc Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Thu, 10 Nov 2022 00:39:12 +0530 Subject: [PATCH 19/26] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 07ebdba..ddf6b8e 100755 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.mycompany.app my-app - war + jar 1.0-SNAPSHOT my-app http://maven.apache.org From 6d973b84125d453212302d4bb3014aa5d6f0f2f3 Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Thu, 10 Nov 2022 00:51:54 +0530 Subject: [PATCH 20/26] Update pom.xml --- pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pom.xml b/pom.xml index ddf6b8e..4cdbdaa 100755 --- a/pom.xml +++ b/pom.xml @@ -20,6 +20,10 @@ + + maven-war-plugin + 3.3.1 + org.apache.maven.plugins From 262268e12efd5d96f2a1908fea6a63eede34cc9b Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Thu, 10 Nov 2022 00:52:54 +0530 Subject: [PATCH 21/26] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4cdbdaa..abe74f5 100755 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.mycompany.app my-app - jar + war 1.0-SNAPSHOT my-app http://maven.apache.org From 6da3e252e83e5226aadf7162d6a271f973274d41 Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Thu, 10 Nov 2022 00:56:26 +0530 Subject: [PATCH 22/26] Update pom.xml --- pom.xml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index abe74f5..e5d1862 100755 --- a/pom.xml +++ b/pom.xml @@ -20,10 +20,7 @@ - - maven-war-plugin - 3.3.1 - + org.apache.maven.plugins @@ -33,6 +30,10 @@ + + maven-war-plugin + 3.3.1 + From 893cb9921648505a7768ead38c519af9565bf55b Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Thu, 10 Nov 2022 00:59:10 +0530 Subject: [PATCH 23/26] Update pom.xml --- pom.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/pom.xml b/pom.xml index e5d1862..114d21d 100755 --- a/pom.xml +++ b/pom.xml @@ -31,6 +31,7 @@ + org.apache.maven.plugins maven-war-plugin 3.3.1 From 542be06d58db618c8b7d0b859a26d30875cb0827 Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Thu, 10 Nov 2022 01:01:39 +0530 Subject: [PATCH 24/26] Update pom.xml --- pom.xml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index 114d21d..70c8b98 100755 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.mycompany.app my-app - war + jar 1.0-SNAPSHOT my-app http://maven.apache.org @@ -30,11 +30,7 @@ - - org.apache.maven.plugins - maven-war-plugin - 3.3.1 - + From 04ea405446cae6c98f04e3e983c8b57da8088bd8 Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Wed, 16 Nov 2022 21:18:24 +0530 Subject: [PATCH 25/26] Update Jenkinsfile --- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 1b91892..186862a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,8 @@ pipeline { agent any + tools{ + maven 'maven' + } stages { stage('Build') { steps { From 9333e2fa56ede3df368e23059bf3b50951e7ffa8 Mon Sep 17 00:00:00 2001 From: Mruthu92 <115160597+Mruthu92@users.noreply.github.com> Date: Wed, 16 Nov 2022 21:21:31 +0530 Subject: [PATCH 26/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4748e9e..73d868b 100644 --- a/README.md +++ b/README.md @@ -13,5 +13,5 @@ mvn clean install to run this is my changes 4 scripts/deliver.sh - +i made changes