Skip to content

Commit

Permalink
Merge pull request quarkusio#10111 from loicmathieu/kafka-json-doc
Browse files Browse the repository at this point in the history
Fix Kafka JSON documentation
  • Loading branch information
gsmet authored Jun 24, 2020
2 parents c00822d + 3c015e8 commit 3ffb034
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/src/main/asciidoc/kafka.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -442,13 +442,13 @@ NOTE: With JSON serialization correctly configured, you can also use `Publisher<

=== Serializing via JSON-B

First, you need to include the `quarkus-resteasy-jsonb` extension (if you already use the `quarkus-resteasy-jsonb` extension, this is not needed).
First, you need to include the `quarkus-jsonb` extension (if you already use the `quarkus-resteasy-jsonb` extension, this is not needed).

[source, xml]
----
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-jsonb</artifactId>
<artifactId>quarkus-jsonb</artifactId>
</dependency>
----

Expand Down Expand Up @@ -493,13 +493,13 @@ Now, your Kafka messages will contain a JSON-B serialized representation of your

=== Serializing via Jackson

First, you need to include the `quarkus-resteasy-jackson` extension (if you already use the `quarkus-jackson-jsonb` extension, this is not needed).
First, you need to include the `quarkus-jackson` extension (if you already use the `quarkus-resteasy-jackson` extension, this is not needed).

[source, xml]
----
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-jackson</artifactId>
<artifactId>quarkus-jackson</artifactId>
</dependency>
----

Expand Down

0 comments on commit 3ffb034

Please sign in to comment.