Skip to content

Commit 1f5cc1d

Browse files
committed
docs(reactive): improved the vertx client section of getting-started-reactive
1 parent 4c82851 commit 1f5cc1d

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

docs/src/main/asciidoc/getting-started-reactive.adoc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -594,6 +594,25 @@ This resource returns `Uni` and `Multi` instances based on the result produced b
594594

595595
The previous example uses a _service_ provided by Quarkus.
596596
Also, you can use Vert.x clients directly.
597+
598+
First of all, make sure the `quarkus-vertx` extension is present. If not, activate the extension by executing the following command:
599+
600+
[source,shell,subs=attributes+]
601+
----
602+
mvn io.quarkus:quarkus-maven-plugin:{quarkus-version}:add-extensions \
603+
-Dextensions=vertx
604+
----
605+
606+
Or add `quarkus-vertx` into your dependencies manually.
607+
608+
[source, xml]
609+
----
610+
<dependency>
611+
<groupId>io.quarkus</groupId>
612+
<artifactId>quarkus-vertx</artifactId>
613+
</dependency>
614+
----
615+
597616
There is a Mutiny version of the Vert.x APIs.
598617
This API is divided into several artifacts you can import independently:
599618

0 commit comments

Comments
 (0)