Skip to content

Commit

Permalink
Remove slash from path and remove hint to tag repository
Browse files Browse the repository at this point in the history
  • Loading branch information
g1raffi committed Dec 10, 2024
1 parent cae6eee commit c97db51
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion content/en/docs/01.0/12_quarkus.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/02.0/21_first-application.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/02.0/22_implementing-rest.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}}
Expand Down Expand Up @@ -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"

```
Expand Down
2 changes: 0 additions & 2 deletions content/en/docs/02.0/23_fault-tolerance.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ The microprofile `fault-tolerance` (Quarkus extension: `quarkus-smallrye-fault-t
</dependency>
```

**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

Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/10.0/105_build-and-use.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```


Expand Down

0 comments on commit c97db51

Please sign in to comment.