From 2766de8c2b3291f7d8fc424641eba3d762bff572 Mon Sep 17 00:00:00 2001 From: PreciousAmine <104632810+PreciousAmine@users.noreply.github.com> Date: Mon, 27 Jun 2022 00:51:47 +0100 Subject: [PATCH 01/11] Create execution.yml --- execution.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 execution.yml diff --git a/execution.yml b/execution.yml new file mode 100644 index 0000000000..748b01ac6b --- /dev/null +++ b/execution.yml @@ -0,0 +1,19 @@ +--- +execution: + - concurrency: 50 + hold-for: 3m + ram-up: 2m + + scenario: choose flight +scenarios: + choose flight: + requests: + -label: blazedemo + method: GET + url: http://blazedemo.com/ + -label: reserve + method: POST + url: http://blazedemo.com/reserve.php + body: + fromPort: Paris + toPort: Buenos Aires From c693f210d1c3eecff753cbdfad90f16c2372389e Mon Sep 17 00:00:00 2001 From: PreciousAmine <104632810+PreciousAmine@users.noreply.github.com> Date: Mon, 27 Jun 2022 00:53:10 +0100 Subject: [PATCH 02/11] Update execution.yml --- execution.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/execution.yml b/execution.yml index 748b01ac6b..17e688c373 100644 --- a/execution.yml +++ b/execution.yml @@ -4,9 +4,9 @@ execution: hold-for: 3m ram-up: 2m - scenario: choose flight + scenario: Choose Flight scenarios: - choose flight: + Choose Flight: requests: -label: blazedemo method: GET From 9027386201838d3f1d9571349c2df79bf1bfdecc Mon Sep 17 00:00:00 2001 From: PreciousAmine <104632810+PreciousAmine@users.noreply.github.com> Date: Mon, 27 Jun 2022 10:40:13 +0100 Subject: [PATCH 03/11] Update README.markdown --- README.markdown | 1 + 1 file changed, 1 insertion(+) diff --git a/README.markdown b/README.markdown index 24b0081df3..a271ef6859 100644 --- a/README.markdown +++ b/README.markdown @@ -1,3 +1,4 @@ +Welcome This is a simple demonstration application used in the [Jenkins: The Definitive Guide](http://wakaleo.com/books/jenkins-the-definitive-guide) book. ## Building the project From 318b7504a042160db158076c2162c069a784deb4 Mon Sep 17 00:00:00 2001 From: PreciousAmine <104632810+PreciousAmine@users.noreply.github.com> Date: Mon, 27 Jun 2022 10:41:57 +0100 Subject: [PATCH 04/11] Update README.markdown --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index a271ef6859..689f5916d7 100644 --- a/README.markdown +++ b/README.markdown @@ -1,4 +1,4 @@ -Welcome +Welcome. This is a simple demonstration application used in the [Jenkins: The Definitive Guide](http://wakaleo.com/books/jenkins-the-definitive-guide) book. ## Building the project From 1a5c123561b4db8dfc3451a89ffb8de4d761b842 Mon Sep 17 00:00:00 2001 From: PreciousAmine <104632810+PreciousAmine@users.noreply.github.com> Date: Mon, 27 Jun 2022 14:38:14 +0100 Subject: [PATCH 05/11] Update README.markdown --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 689f5916d7..0c94ebc614 100644 --- a/README.markdown +++ b/README.markdown @@ -1,4 +1,4 @@ -Welcome. +Welcome to our first project This is a simple demonstration application used in the [Jenkins: The Definitive Guide](http://wakaleo.com/books/jenkins-the-definitive-guide) book. ## Building the project From 98896c1edc1fe0855dc53a5378f0d5be508c4d5d Mon Sep 17 00:00:00 2001 From: PreciousAmine <104632810+PreciousAmine@users.noreply.github.com> Date: Thu, 2 May 2024 11:35:41 +0100 Subject: [PATCH 06/11] Update README.markdown --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 0c94ebc614..deaa5e97ef 100644 --- a/README.markdown +++ b/README.markdown @@ -1,5 +1,5 @@ Welcome to our first project -This is a simple demonstration application used in the [Jenkins: The Definitive Guide](http://wakaleo.com/books/jenkins-the-definitive-guide) book. +This is a simple demonstration application used in the [Jenkins: The Definitive Guide](http://wakaleo.com/books/jenkins-the-definitive-guide)book. ## Building the project From 5bbd70e3f979f1c4856eaa2dd20ca70d81ce67d9 Mon Sep 17 00:00:00 2001 From: GOODNESS TCHAYA Date: Thu, 2 May 2024 14:56:08 +0100 Subject: [PATCH 07/11] changes stars to pluses --- .../src/main/java/com/wakaleo/gameoflife/domain/Cell.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java b/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java index ae8cd3cb3f..1bc2b77149 100644 --- a/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java +++ b/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java @@ -9,7 +9,7 @@ */ public enum Cell { // Symbols to represent cell status - LIVE_CELL("*"), DEAD_CELL("."); + LIVE_CELL("+"), DEAD_CELL("."); private String symbol; From 100831f27e191160b2169b06c10ab4a102271a9c Mon Sep 17 00:00:00 2001 From: GOODNESS TCHAYA Date: Thu, 2 May 2024 15:03:19 +0100 Subject: [PATCH 08/11] changes pluses to stars --- .../src/main/java/com/wakaleo/gameoflife/domain/Cell.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java b/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java index 1bc2b77149..ae8cd3cb3f 100644 --- a/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java +++ b/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java @@ -9,7 +9,7 @@ */ public enum Cell { // Symbols to represent cell status - LIVE_CELL("+"), DEAD_CELL("."); + LIVE_CELL("*"), DEAD_CELL("."); private String symbol; From 4881a7694224a520a8f873ba8640d7f714d48345 Mon Sep 17 00:00:00 2001 From: GOODNESS TCHAYA Date: Thu, 2 May 2024 15:09:57 +0100 Subject: [PATCH 09/11] Changes stars to minus --- .../src/main/java/com/wakaleo/gameoflife/domain/Cell.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java b/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java index ae8cd3cb3f..a3ea3118c8 100644 --- a/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java +++ b/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java @@ -9,7 +9,7 @@ */ public enum Cell { // Symbols to represent cell status - LIVE_CELL("*"), DEAD_CELL("."); + LIVE_CELL("-"), DEAD_CELL("."); private String symbol; From 797f013afb5a292652e0fb841b6548643e9526cc Mon Sep 17 00:00:00 2001 From: GOODNESS TCHAYA Date: Thu, 2 May 2024 15:21:43 +0100 Subject: [PATCH 10/11] Changes minus to pluses --- .vscode/settings.json | 3 +++ .../src/main/java/com/wakaleo/gameoflife/domain/Cell.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000..7b016a89fb --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "java.compile.nullAnalysis.mode": "automatic" +} \ No newline at end of file diff --git a/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java b/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java index a3ea3118c8..1bc2b77149 100644 --- a/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java +++ b/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java @@ -9,7 +9,7 @@ */ public enum Cell { // Symbols to represent cell status - LIVE_CELL("-"), DEAD_CELL("."); + LIVE_CELL("+"), DEAD_CELL("."); private String symbol; From 5d56bdef81c54d572c4a349282ad716c2b8857b7 Mon Sep 17 00:00:00 2001 From: PreciousAmine Date: Thu, 2 May 2024 17:31:49 +0100 Subject: [PATCH 11/11] Restoration of the star --- .../src/main/java/com/wakaleo/gameoflife/domain/Cell.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java b/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java index 1bc2b77149..ae8cd3cb3f 100644 --- a/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java +++ b/gameoflife-core/src/main/java/com/wakaleo/gameoflife/domain/Cell.java @@ -9,7 +9,7 @@ */ public enum Cell { // Symbols to represent cell status - LIVE_CELL("+"), DEAD_CELL("."); + LIVE_CELL("*"), DEAD_CELL("."); private String symbol;