-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
42 additions
and
1 deletion.
There are no files selected for viewing
43 changes: 42 additions & 1 deletion
43
...src/main/codestarts/quarkus/openapi-generator-codestart/java/README.tpl.qute.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,48 @@ | ||
{#include readme-header /} | ||
|
||
If you do not have added the `io.quarkus:quarkus-rest-client-jackson` extension in your project, add it first: | ||
## Requirements | ||
|
||
If you do not have added the `io.quarkus:quarkus-rest-client-jackson` or `io.quarkus:quarkus-rest-client-reactive-jackson` extension in your project, add it first: | ||
|
||
Remember, you just need to add one of them, depending on your needs. | ||
|
||
### REST Client Jackson: | ||
|
||
Quarkus CLI: | ||
|
||
```bash | ||
quarkus ext add io.quarkus:quarkus-rest-client-jackson | ||
``` | ||
|
||
Maven: | ||
```bash | ||
./mvnw quarkus:add-extension -Dextensions="io.quarkus:quarkus-rest-client-jackson" | ||
``` | ||
|
||
Gradle: | ||
|
||
```bash | ||
./gradlew addExtension --extensions="io.quarkus:quarkus-rest-client-jackson" | ||
``` | ||
|
||
or | ||
|
||
### REST Client Reactive Jackson: | ||
|
||
Quarkus CLI: | ||
|
||
```bash | ||
quarkus ext add io.quarkus:quarkus-rest-client-reactive-jackson | ||
``` | ||
|
||
Maven: | ||
|
||
```bash | ||
./mvnw quarkus:add-extension -Dextensions="io.quarkus:quarkus-rest-client-reactive-jackson" | ||
``` | ||
|
||
Gradle: | ||
|
||
```bash | ||
./gradlew addExtension --extensions="io.quarkus:quarkus-rest-client-reactive-jackson" | ||
``` |