Skip to content

Commit e3dd4fd

Browse files
committed
update reactive extensions to new naming convention
1 parent 0cc1d63 commit e3dd4fd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

documentation/modules/ROOT/pages/basics.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Maven::
1313
[.console-input]
1414
[source,bash,subs="+macros,+attributes"]
1515
----
16-
mvn "io.quarkus.platform:quarkus-maven-plugin:create" -DprojectGroupId="com.redhat.developers" -DprojectArtifactId="tutorial-app" -DprojectVersion="1.0-SNAPSHOT" -Dextensions=resteasy-reactive
16+
mvn "io.quarkus.platform:quarkus-maven-plugin:create" -DprojectGroupId="com.redhat.developers" -DprojectArtifactId="tutorial-app" -DprojectVersion="1.0-SNAPSHOT" -Dextensions=rest
1717
cd {project-name}
1818
----
1919
--
@@ -28,7 +28,7 @@ Then create the application:
2828
[.console-input]
2929
[source,bash,subs="+macros,+attributes"]
3030
----
31-
quarkus create app -x resteasy-reactive com.redhat.developers:tutorial-app:1.0-SNAPSHOT
31+
quarkus create app -x rest com.redhat.developers:tutorial-app:1.0-SNAPSHOT
3232
cd {project-name}
3333
----
3434
--
@@ -55,7 +55,7 @@ curl localhost:8080/hello
5555
[.console-output]
5656
[source,bash]
5757
----
58-
Hello from RESTEasy Reactive
58+
Hello from Quarkus REST
5959
----
6060

6161
== Stopping the application

0 commit comments

Comments
 (0)