From 7a484dce8f6ea90eb385675bc7546b2664b7db6a Mon Sep 17 00:00:00 2001 From: Clement Escoffier Date: Mon, 25 Jul 2022 09:17:55 +0200 Subject: [PATCH] Fix quickstarts - noExamples does not exist anymore --- docs/modules/ROOT/pages/reactive-messaging-http.adoc | 9 ++------- .../modules/ROOT/pages/reactive-messaging-websocket.adoc | 2 +- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/docs/modules/ROOT/pages/reactive-messaging-http.adoc b/docs/modules/ROOT/pages/reactive-messaging-http.adoc index df528d4..2f2c64d 100644 --- a/docs/modules/ROOT/pages/reactive-messaging-http.adoc +++ b/docs/modules/ROOT/pages/reactive-messaging-http.adoc @@ -42,8 +42,8 @@ First, we need a new project. Create a new project with the following command: mvn io.quarkus.platform:quarkus-maven-plugin:{quarkus-version}:create \ -DprojectGroupId=org.acme \ -DprojectArtifactId=reactive-messaging-http-quickstart \ - -Dextensions="reactive-messaging-http" \ - -DnoExamples + -Dextensions="reactive-messaging-http,reasteasy-reactive-jackson" \ + -DnoCode cd reactive-messaging-http-quickstart ---- @@ -92,8 +92,6 @@ public class CostConverter { return conversionRatio * cost.getValue(); } } - - ---- <1> Consume messages from the `incoming-costs` stream. <2> Dispatch returned values to the `outgoing-costs` stream. @@ -126,11 +124,8 @@ public class Cost { this.currency = currency; } } - ---- - - In the next step, we will create configurations for both streams in the `application.properties` file. == Configuring the HTTP connector diff --git a/docs/modules/ROOT/pages/reactive-messaging-websocket.adoc b/docs/modules/ROOT/pages/reactive-messaging-websocket.adoc index 02d30d0..34c64a3 100644 --- a/docs/modules/ROOT/pages/reactive-messaging-websocket.adoc +++ b/docs/modules/ROOT/pages/reactive-messaging-websocket.adoc @@ -47,7 +47,7 @@ mvn io.quarkus:quarkus-maven-plugin:{quarkus-version}:create \ -DprojectGroupId=org.acme \ -DprojectArtifactId=reactive-messaging-websockets-quickstart \ -Dextensions="reactive-messaging-http,resteasy-reactive-jackson" \ - -DnoExamples + -DnoCode cd reactive-messaging-websockets-quickstart ----