From 491d3a5932b39327814bc8e1279fc843b24a5dd2 Mon Sep 17 00:00:00 2001 From: Godwin Maxime Arinaitwe Date: Mon, 1 Dec 2025 12:21:58 +0100 Subject: [PATCH 1/6] added new file --- Maxime.MD | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Maxime.MD diff --git a/Maxime.MD b/Maxime.MD new file mode 100644 index 0000000..1d2a948 --- /dev/null +++ b/Maxime.MD @@ -0,0 +1,4 @@ +Document to keep track of what I learned during the demo. + +* Very interesting training and trainer +* GIT is not rocket science after all :D From 94c26536d0b41ba02dfe502bbd83024390ecf71e Mon Sep 17 00:00:00 2001 From: Godwin Maxime Arinaitwe Date: Mon, 1 Dec 2025 16:01:51 +0100 Subject: [PATCH 2/6] changed background colour to blue --- build-war/src/main/webapp/index.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-war/src/main/webapp/index.jsp b/build-war/src/main/webapp/index.jsp index d7f050a..d715376 100644 --- a/build-war/src/main/webapp/index.jsp +++ b/build-war/src/main/webapp/index.jsp @@ -1,6 +1,6 @@ <%@page import="org.nirkoren.maven.demo.HelloHandler"%> - +

Welcome to DevOpsCon Demo repo

CI/CD Workshop, Maven / Tomcat WAR example

<% From 68206b61108b48c9b114295a72304084bf2c8b08 Mon Sep 17 00:00:00 2001 From: Godwin Maxime Arinaitwe Date: Mon, 1 Dec 2025 16:06:27 +0100 Subject: [PATCH 3/6] changed background colour to yellow --- build-war/src/main/webapp/index.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-war/src/main/webapp/index.jsp b/build-war/src/main/webapp/index.jsp index d715376..2c90612 100644 --- a/build-war/src/main/webapp/index.jsp +++ b/build-war/src/main/webapp/index.jsp @@ -1,6 +1,6 @@ <%@page import="org.nirkoren.maven.demo.HelloHandler"%> - +

Welcome to DevOpsCon Demo repo

CI/CD Workshop, Maven / Tomcat WAR example

<% From a47831b1b8283d523cc84ae4373ebc5cd8b8b071 Mon Sep 17 00:00:00 2001 From: Godwin Maxime Arinaitwe Date: Mon, 1 Dec 2025 16:11:38 +0100 Subject: [PATCH 4/6] changed Jenkinsfile Repository URL --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 17f9509..424870d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,6 +1,6 @@ node { def mvnHome - def GIT_REPO = "https://github.com/nirkoren/devopscon.git" + def GIT_REPO = "https://github.com/maximearin/devopscon.git" stage("Preparation") { println "Cloning git repository..." From 91710f7ee33c2dbd18c8b3f9916f37ceb5458938 Mon Sep 17 00:00:00 2001 From: Godwin Maxime Arinaitwe Date: Mon, 1 Dec 2025 16:19:28 +0100 Subject: [PATCH 5/6] changed Maven Installation name in Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 424870d..b4c2b07 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,7 +5,7 @@ node { stage("Preparation") { println "Cloning git repository..." git branch: "main", url: GIT_REPO - mvnHome = tool 'M3' + mvnHome = tool 'Maven local' } stage('Build & Deploy') { From e49d484210c921c8d7601cee5942f272bdaa695c Mon Sep 17 00:00:00 2001 From: Godwin Maxime Arinaitwe Date: Mon, 1 Dec 2025 16:22:05 +0100 Subject: [PATCH 6/6] changed background colour in index.jsp to gold --- build-war/src/main/webapp/index.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-war/src/main/webapp/index.jsp b/build-war/src/main/webapp/index.jsp index 2c90612..f98c6b7 100644 --- a/build-war/src/main/webapp/index.jsp +++ b/build-war/src/main/webapp/index.jsp @@ -1,6 +1,6 @@ <%@page import="org.nirkoren.maven.demo.HelloHandler"%> - +

Welcome to DevOpsCon Demo repo

CI/CD Workshop, Maven / Tomcat WAR example

<%