diff --git a/docs/src/main/asciidoc/rest-data-panache.adoc b/docs/src/main/asciidoc/rest-data-panache.adoc
index 3244ef14b3b9b..7a4a211ea4999 100644
--- a/docs/src/main/asciidoc/rest-data-panache.adoc
+++ b/docs/src/main/asciidoc/rest-data-panache.adoc
@@ -23,7 +23,7 @@ include::./status-include.adoc[]
* Add the required dependencies to your `pom.xml`
** Hibernate ORM REST Data with Panache extension (`quarkus-hibernate-orm-rest-data-panache`)
** A JDBC driver extension (`quarkus-jdbc-postgresql`, `quarkus-jdbc-h2`, `quarkus-jdbc-mariadb`, ...)
-** One of the RESTEasy JSON serialization extensions (`quarkus-resteasy-jackson` or `quarkus-resteasy-jsonb`)
+** One of the RESTEasy JSON serialization extensions (`quarkus-resteasy-reactive-jackson` or `quarkus-resteasy-reactive-jsonb`)
[source,xml]
----
@@ -38,7 +38,7 @@ include::./status-include.adoc[]
io.quarkus
- quarkus-resteasy-jackson
+ quarkus-resteasy-reactive-jackson
----
@@ -50,7 +50,7 @@ include::./status-include.adoc[]
* Add the required dependencies to your `pom.xml`
** MongoDB REST Data with Panache extension (`quarkus-mongodb-rest-data-panache`)
-** One of the RESTEasy JSON serialization extensions (`quarkus-resteasy-jackson` or `quarkus-resteasy-jsonb`)
+** One of the RESTEasy JSON serialization extensions (`quarkus-resteasy-reactive-jackson` or `quarkus-resteasy-reactive-jsonb`)
[source,xml]
----
@@ -61,7 +61,7 @@ include::./status-include.adoc[]
io.quarkus
- quarkus-resteasy-jackson
+ quarkus-resteasy-reactive-jackson
----
diff --git a/docs/src/main/asciidoc/spring-data-rest.adoc b/docs/src/main/asciidoc/spring-data-rest.adoc
index 991f1078de50e..fc0c55d4eef60 100644
--- a/docs/src/main/asciidoc/spring-data-rest.adoc
+++ b/docs/src/main/asciidoc/spring-data-rest.adoc
@@ -41,7 +41,7 @@ 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=spring-data-rest-quickstart \
- -Dextensions="spring-data-rest,resteasy-jackson,quarkus-jdbc-postgresql" \
+ -Dextensions="spring-data-rest,resteasy-reactive-jackson,quarkus-jdbc-postgresql" \
-DnoExamples
cd spring-data-rest-quickstart
----
@@ -76,7 +76,7 @@ For the tests you will also need REST Assured. Add it to the `pom.xml`:
----
-Note: both `resteasy-jackson` and `resteasy-jsonb` are supported and can be interchanged.
+Note: both `resteasy-reactive-jackson` and `resteasy-reactive-jsonb` are supported and can be interchanged.
== Define the Entity