Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1b7638f

Browse files
committedJan 20, 2023
Polish docs
1 parent dc7de95 commit 1b7638f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎docs/getting-started/connecting.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ configuring authentication, refer to
2727
==== Your first request
2828

2929
The code snippet below searches all items from a “product” index whose name
30-
matches “bicycle” and return them as instances of a `Product` application class.
30+
matches “bicycle” and returns them as instances of a `Product` application class.
3131

3232
It illustrates the use of fluent functional builders to write search queries as
3333
concise DSL-like code. This pattern is explained in more detail in

‎docs/getting-started/installation.asciidoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ dependencies {
9595

9696
Some frameworks like Spring Boot or Helidon come with their Gradle and Maven plugins or their Maven BOM files to ease development and dependency management. These plugins and BOM define the versions to use for a number of well-known libraries.
9797

98-
One these libraries can be `jakarta.json:json-api` that defines the standard Java JSON API. In version `1.x` this library used the `javax.json` package, while in version `2.x` it uses the `jakarta.json` package after https://blogs.oracle.com/javamagazine/post/transition-from-java-ee-to-jakarta-ee[the transition from JavaEE to JakartaEE].
98+
One of these libraries can be `jakarta.json:json-api` that defines the standard Java JSON API. In version `1.x` this library used the `javax.json` package, while in version `2.x` it uses the `jakarta.json` package after https://blogs.oracle.com/javamagazine/post/transition-from-java-ee-to-jakarta-ee[the transition from JavaEE to JakartaEE].
9999

100100
The {java-client} depends on version `2.0.1` of this library, in order to use the newer and future-proof `jakarta.json` package. But some build plugins and BOMs override the {java-client}'s dependency to use version `1.x` in the older `javax.json` namespace, resulting in `ClassNotFoundException: jakarta.json.spi.JsonProvider`.
101101

0 commit comments

Comments
 (0)
Please sign in to comment.