From c97db513e2fa37f19bbddba9061b6178a2b91e7e Mon Sep 17 00:00:00 2001 From: Raffael H Date: Tue, 10 Dec 2024 15:25:31 +0100 Subject: [PATCH] Remove slash from path and remove hint to tag repository --- content/en/docs/01.0/12_quarkus.md | 2 +- content/en/docs/02.0/21_first-application.md | 2 +- content/en/docs/02.0/22_implementing-rest.md | 4 ++-- content/en/docs/02.0/23_fault-tolerance.md | 2 -- content/en/docs/10.0/105_build-and-use.md | 2 +- 5 files changed, 5 insertions(+), 7 deletions(-) diff --git a/content/en/docs/01.0/12_quarkus.md b/content/en/docs/01.0/12_quarkus.md index 958f768e..ad9bfb7b 100644 --- a/content/en/docs/01.0/12_quarkus.md +++ b/content/en/docs/01.0/12_quarkus.md @@ -96,7 +96,7 @@ mvn io.quarkus:quarkus-maven-plugin:{{% param "quarkusVersion" %}}:create \ -DprojectGroupId=ch.puzzle \ -DprojectArtifactId=quarkus-introduction-service \ -DclassName="ch.puzzle.quarkustechlab.IntroductionResource" \ - -Dpath="/hello" + -Dpath="hello" ``` Your project is now ready in the `quarkus-introduction-service` folder. diff --git a/content/en/docs/02.0/21_first-application.md b/content/en/docs/02.0/21_first-application.md index 8d549bec..b8f0b065 100644 --- a/content/en/docs/02.0/21_first-application.md +++ b/content/en/docs/02.0/21_first-application.md @@ -31,7 +31,7 @@ mvn io.quarkus:quarkus-maven-plugin:{{% param "quarkusVersion" %}}:create \ -DprojectGroupId=ch.puzzle \ -DprojectArtifactId=quarkus-getting-started \ -DclassName="ch.puzzle.quarkustechlab.GreetingResource" \ - -Dpath="/hello" + -Dpath="hello" ``` Which creates a generated getting-started application bootstrapped for you. The diff --git a/content/en/docs/02.0/22_implementing-rest.md b/content/en/docs/02.0/22_implementing-rest.md index 56c6768d..980bdd98 100644 --- a/content/en/docs/02.0/22_implementing-rest.md +++ b/content/en/docs/02.0/22_implementing-rest.md @@ -33,7 +33,7 @@ mvn io.quarkus:quarkus-maven-plugin:{{% param "quarkusVersion" %}}:create \ -DprojectGroupId=ch.puzzle \ -DprojectArtifactId=quarkus-rest-data-producer \ -DclassName="ch.puzzle.quarkustechlab.restproducer.boundary.DataResource" \ - -Dpath="/data" + -Dpath="data" ``` {{% /details %}} @@ -121,7 +121,7 @@ mvn io.quarkus:quarkus-maven-plugin:{{% param "quarkusVersion" %}}:create \ -DprojectGroupId=ch.puzzle \ -DprojectArtifactId=quarkus-rest-data-consumer \ -DclassName="ch.puzzle.quarkustechlab.restconsumer.boundary.DataConsumerResource" \ - -Dpath="/data" \ + -Dpath="data" \ -Dextensions="quarkus-rest-client-jackson" ``` diff --git a/content/en/docs/02.0/23_fault-tolerance.md b/content/en/docs/02.0/23_fault-tolerance.md index e13e7649..4256396b 100644 --- a/content/en/docs/02.0/23_fault-tolerance.md +++ b/content/en/docs/02.0/23_fault-tolerance.md @@ -21,8 +21,6 @@ The microprofile `fault-tolerance` (Quarkus extension: `quarkus-smallrye-fault-t ``` -**Hint:** Maybe it's a good time to tag your repositories for the consumer and producer at this point. We are going to intentionally break some code and test fault tolerance which we will revert after each example. - ### {{% param sectionnumber %}}.1.1: Resilience through Retries diff --git a/content/en/docs/10.0/105_build-and-use.md b/content/en/docs/10.0/105_build-and-use.md index 502888f6..f9357527 100644 --- a/content/en/docs/10.0/105_build-and-use.md +++ b/content/en/docs/10.0/105_build-and-use.md @@ -31,7 +31,7 @@ mvn io.quarkus:quarkus-maven-plugin:{{% param "quarkusVersion" %}}:create \ -DprojectGroupId=ch.puzzle \ -DprojectArtifactId=quarkus-appinfo-application \ -DclassName="ch.puzzle.quarkustechlab.extensions.appinfo.application.boundary.DemoResource" \ - -Dpath="/demo" + -Dpath="demo" ```