From e0c5a3cdf953438471046691be05c108b5c35b58 Mon Sep 17 00:00:00 2001 From: vishnu-arava <89841715+vishnu-arava@users.noreply.github.com> Date: Fri, 24 Dec 2021 19:10:05 +0530 Subject: [PATCH 1/5] Update index.jsp --- webapp/src/main/webapp/index.jsp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/webapp/src/main/webapp/index.jsp b/webapp/src/main/webapp/index.jsp index 2e9f0403..5a5e65d3 100644 --- a/webapp/src/main/webapp/index.jsp +++ b/webapp/src/main/webapp/index.jsp @@ -1,6 +1,6 @@ -

Hello Dear Students !!, Welcome to DevOps Project-2 !!

-

By Mr.Hari from Saidemy

-

It's time to start the DevOps Project-2 by Mr.Hari!!

-

This is what complete End-to-End CI-CD pipeline DevOps Project!!

-

we are done with DevOps Project-2

+

1Hello Dear Students !!, Welcome to DevOps Project-2 !!

+

2By Mr.Hari from Saidemy

+

3It's time to start the DevOps Project-2 by Mr.Hari!!

+

4This is what complete End-to-End CI-CD pipeline DevOps Project!!

+

5we are done with DevOps Project-2

From c891eecc93899a5d5da4da7f8f315acd5dd2dfaf Mon Sep 17 00:00:00 2001 From: vishnu Date: Fri, 24 Dec 2021 13:50:06 +0000 Subject: [PATCH 2/5] a --- webapp/src/main/webapp/index.jsp | 1 - 1 file changed, 1 deletion(-) diff --git a/webapp/src/main/webapp/index.jsp b/webapp/src/main/webapp/index.jsp index 5a5e65d3..be81260c 100644 --- a/webapp/src/main/webapp/index.jsp +++ b/webapp/src/main/webapp/index.jsp @@ -1,4 +1,3 @@ -

1Hello Dear Students !!, Welcome to DevOps Project-2 !!

2By Mr.Hari from Saidemy

3It's time to start the DevOps Project-2 by Mr.Hari!!

4This is what complete End-to-End CI-CD pipeline DevOps Project!!

From 6dd11b286a17dc5f01dd67dda9011f8528664341 Mon Sep 17 00:00:00 2001 From: vishnu-arava Date: Fri, 26 Aug 2022 11:03:58 +0000 Subject: [PATCH 3/5] 1deleted --- webapp/src/main/webapp/index.jsp | 1 - 1 file changed, 1 deletion(-) diff --git a/webapp/src/main/webapp/index.jsp b/webapp/src/main/webapp/index.jsp index be81260c..a3660860 100644 --- a/webapp/src/main/webapp/index.jsp +++ b/webapp/src/main/webapp/index.jsp @@ -1,5 +1,4 @@

2By Mr.Hari from Saidemy

3It's time to start the DevOps Project-2 by Mr.Hari!!

4This is what complete End-to-End CI-CD pipeline DevOps Project!!

-

5we are done with DevOps Project-2

From 72374f3b09927e40407f5caaa0380e960bf523b9 Mon Sep 17 00:00:00 2001 From: vishnu-arava Date: Fri, 26 Aug 2022 13:09:25 +0000 Subject: [PATCH 4/5] broadded --- webapp/src/main/webapp/index.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/main/webapp/index.jsp b/webapp/src/main/webapp/index.jsp index a3660860..78e236f8 100644 --- a/webapp/src/main/webapp/index.jsp +++ b/webapp/src/main/webapp/index.jsp @@ -1,4 +1,4 @@

2By Mr.Hari from Saidemy

-

3It's time to start the DevOps Project-2 by Mr.Hari!!

+

3It's time to start the DevOps Project-2 by Mr.Hari!!bro

4This is what complete End-to-End CI-CD pipeline DevOps Project!!

From ff57e322ae1fb23db6078898b3ddf39bc9029287 Mon Sep 17 00:00:00 2001 From: vishnu-arava <89841715+vishnu-arava@users.noreply.github.com> Date: Thu, 26 Dec 2024 00:55:06 +0530 Subject: [PATCH 5/5] Create Jenkinsfile --- Jenkinsfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..6cac9cc6 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,11 @@ +node { + stage('SCM') { + checkout scm + } + stage('SonarQube Analysis') { + def mvn = tool 'MAVEN_HOME'; + withSonarQubeEnv() { + sh "${mvn}/bin/mvn clean verify sonar:sonar -Dsonar.projectKey=Java_Project -Dsonar.projectName='Java_Project'" + } + } +}