Skip to content

Commit

Permalink
Merge pull request #11767 from g1raffi/patch-1
Browse files Browse the repository at this point in the history
Fix wrong extension name in kafka example
  • Loading branch information
gsmet authored Sep 1, 2020
2 parents d41f730 + 7c44065 commit 7a84c4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/main/asciidoc/kafka.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ First, we need a new project. Create a new project with the following command:
mvn io.quarkus:quarkus-maven-plugin:{quarkus-version}:create \
-DprojectGroupId=org.acme \
-DprojectArtifactId=kafka-quickstart \
-Dextensions="kafka"
-Dextensions="smallrye-reactive-messaging-kafka"
cd kafka-quickstart
----

Expand All @@ -59,7 +59,7 @@ to your project by running the following command in your project base directory:

[source,bash]
----
./mvnw quarkus:add-extension -Dextensions="kafka"
./mvnw quarkus:add-extension -Dextensions="smallrye-reactive-messaging-kafka"
----

This will add the following to your `pom.xml`:
Expand Down

0 comments on commit 7a84c4a

Please sign in to comment.