Skip to content

Commit

Permalink
Fix wrong extension name in kafka example
Browse files Browse the repository at this point in the history
The extension "kafka" does not exist, should be "smallrye-reactive-messaging-kafka"
  • Loading branch information
Raffael Hertle authored Sep 1, 2020
1 parent c6fa955 commit 7c44065
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 7c44065

Please sign in to comment.