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

Updates to installation doc with helidon framework notes #227

Closed
wants to merge 2 commits into from
Closed
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
6 changes: 5 additions & 1 deletion docs/installation.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ dependencies:
<version>2.12.3</version>
</dependency>

<!-- Needed only if you use the spring-boot Maven plugin -->
<!-- Needed only if you use the spring-boot Maven plugin or frameworks like Helidon -->
<dependency> <!--1-->
<groupId>jakarta.json</groupId>
<artifactId>jakarta.json-api</artifactId>
Expand All @@ -84,3 +84,7 @@ The {java-client} depends on version `2.0.1` of this library, in order to use th
This is why you have to explicitly add the `jakarta.json:jakarta.json-api:2.0.1` dependency. Otherwise, this will result in the following exception at runtime: `java.lang.ClassNotFoundException: jakarta.json.spi.JsonProvider`.

If your application also requires `javax.json` you can add the `javax.json:javax.json-api:1.1.4` dependency, which is equivalent to `jakarta.json:jakarta.json-api:1.1.6`.

Note:

* Applications built with frameworks like https://helidon.io[Helidon] will also require the `jakarta.json:jakarta.json-api:2.0.1` dependency added explicitly to the build file.