Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix rest-client-jackson dependency name #597

Merged
merged 2 commits into from
Sep 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,16 @@ We are going to rework the:
* `FightResourceTest` class
* `application.properties`

== Installing the Reactive REST Client Dependency
== Installing the REST Client Dependency

[example, role="cta"]
--

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

[source,shell]
----
./mvnw quarkus:add-extension -Dextensions="io.quarkus:quarkus-rest-client-reactive-jackson"
./mvnw quarkus:add-extension -Dextensions="io.quarkus:quarkus-rest-client-jackson"
----
--

Expand All @@ -82,11 +82,11 @@ This will add the following dependency in the `pom.xml` file:
----
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-rest-client-reactive-jackson</artifactId>
<artifactId>quarkus-rest-client-jackson</artifactId>
</dependency>
----

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

== FightService Invoking External Microservices

Expand Down
Loading