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 Original file line number Diff line number Diff line change @@ -63,16 +63,16 @@ We are going to rework the:
63
63
* `FightResourceTest` class
64
64
* `application.properties`
65
65
66
- == Installing the Reactive REST Client Dependency
66
+ == Installing the REST Client Dependency
67
67
68
68
[example, role="cta"]
69
69
--
70
70
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:
72
72
73
73
[source,shell]
74
74
----
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"
76
76
----
77
77
--
78
78
@@ -82,11 +82,11 @@ This will add the following dependency in the `pom.xml` file:
82
82
----
83
83
<dependency>
84
84
<groupId>io.quarkus</groupId>
85
- <artifactId>quarkus-rest-client-reactive- jackson</artifactId>
85
+ <artifactId>quarkus-rest-client-jackson</artifactId>
86
86
</dependency>
87
87
----
88
88
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).
90
90
91
91
== FightService Invoking External Microservices
92
92
You can’t perform that action at this time.
0 commit comments