From 217f65a74a57e097308845036908b71fd992fe39 Mon Sep 17 00:00:00 2001 From: YogaTom Date: Fri, 24 Jul 2026 08:33:18 +0000 Subject: [PATCH 1/5] added a space line in pom.xml --- worker/pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/worker/pom.xml b/worker/pom.xml index c0c976441..14ae0084a 100644 --- a/worker/pom.xml +++ b/worker/pom.xml @@ -102,3 +102,5 @@ + + From 4a65dcf53c9fd6fe16253b6c2588cd96f9a38e30 Mon Sep 17 00:00:00 2001 From: YogaTom Date: Fri, 24 Jul 2026 08:50:19 +0000 Subject: [PATCH 2/5] added tom-test.txt to dir --- worker/tom-test.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 worker/tom-test.txt diff --git a/worker/tom-test.txt b/worker/tom-test.txt new file mode 100644 index 000000000..241587d0e --- /dev/null +++ b/worker/tom-test.txt @@ -0,0 +1 @@ +tom From c2ee693c14cc9c1f10db51c51c2d701982b74b89 Mon Sep 17 00:00:00 2001 From: YogaTom Date: Tue, 4 Aug 2026 08:20:29 +0000 Subject: [PATCH 3/5] added info to READEME.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a8ee7312c..f377026b3 100644 --- a/README.md +++ b/README.md @@ -58,3 +58,5 @@ Note ---- The voting application only accepts one vote per client. It does not register votes if a vote has already been submitted from a client. + +I am tom From 30cbf13eb339568fe2b9e16a3de52ee32f893fa9 Mon Sep 17 00:00:00 2001 From: YogaTom Date: Tue, 4 Aug 2026 09:21:29 +0000 Subject: [PATCH 4/5] tom -test --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f377026b3..5dab63473 100644 --- a/README.md +++ b/README.md @@ -60,3 +60,4 @@ Note The voting application only accepts one vote per client. It does not register votes if a vote has already been submitted from a client. I am tom +tom - test From 19508b0e0272d44f24bba203237d93f743ccf3eb Mon Sep 17 00:00:00 2001 From: YogaTom Date: Tue, 11 Aug 2026 08:43:12 +0000 Subject: [PATCH 5/5] added file Jenkins --- Jenkinsfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..daa8063f8 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,30 @@ +pipeline { + agent any + + stages{ + stage("one"){ + steps{ + echo 'step 1' + sleep 3 + } + } + stage("two"){ + steps{ + echo 'step 2' + sleep 9 + } + } + stage("three"){ + steps{ + echo 'step 3' + sleep 5 + } + } + } + + post{ + always{ + echo 'This pipeline is completed.' + } + } +}