Skip to content

Commit 064ae49

Browse files
authored
Merge pull request #597 from gastaldi/fix_dep
Fix rest-client-jackson dependency name
2 parents 3095815 + f74141c commit 064ae49

File tree

1 file changed

+5
-5
lines changed
  • quarkus-workshop-super-heroes/docs/src/docs/asciidoc/core-rest-client

1 file changed

+5
-5
lines changed

quarkus-workshop-super-heroes/docs/src/docs/asciidoc/core-rest-client/rest-clients.adoc

+5-5
Original file line numberDiff line numberDiff line change
@@ -63,16 +63,16 @@ We are going to rework the:
6363
* `FightResourceTest` class
6464
* `application.properties`
6565

66-
== Installing the Reactive REST Client Dependency
66+
== Installing the REST Client Dependency
6767

6868
[example, role="cta"]
6969
--
7070

71-
To install the Reactive REST Client dependency, just run the following command in the Fight microservice:
71+
To install the REST Client dependency, just run the following command in the Fight microservice:
7272

7373
[source,shell]
7474
----
75-
./mvnw quarkus:add-extension -Dextensions="io.quarkus:quarkus-rest-client-reactive-jackson"
75+
./mvnw quarkus:add-extension -Dextensions="io.quarkus:quarkus-rest-client-jackson"
7676
----
7777
--
7878

@@ -82,11 +82,11 @@ This will add the following dependency in the `pom.xml` file:
8282
----
8383
<dependency>
8484
<groupId>io.quarkus</groupId>
85-
<artifactId>quarkus-rest-client-reactive-jackson</artifactId>
85+
<artifactId>quarkus-rest-client-jackson</artifactId>
8686
</dependency>
8787
----
8888

89-
This dependency imports both the reactive rest client implementation and the JSON mapping support (which uses Jackson).
89+
This dependency imports both the REST client implementation and the JSON mapping support (which uses Jackson).
9090

9191
== FightService Invoking External Microservices
9292

0 commit comments

Comments
 (0)