Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix quickstarts - noExamples does not exist anymore #75

Merged
merged 1 commit into from
Jul 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions docs/modules/ROOT/pages/reactive-messaging-http.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
----

Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
----

Expand Down