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

[Backport 8.1] Fix jsonb url #179

Merged
merged 1 commit into from
Mar 3, 2022
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docs/installation.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Requirements:
* Java 8 or later.
* A JSON object mapping library to allow seamless integration of
your application classes with the Elasticsearch API. The Java client has
support for https://github.com/FasterXML/jackson[Jackson] or a
http://json-b.net/[JSON-B] library like
support for https://github.com/FasterXML/jackson[Jackson] or a
https://github.com/eclipse-ee4j/jsonb-api[JSON-B] library like
https://github.com/eclipse-ee4j/yasson[Eclipse Yasson].


Expand Down
2 changes: 1 addition & 1 deletion docs/introduction.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ initial feedback and this led to a few breaking changes in this version:
* all API data types are now supported, and there are no more raw `JsonValue` properties.
* the supporting JSON framework and transport classes have been refactored and improved.
However the high level APIs used by applications haven't changed so there should be
no of very little impact on existing application code.
no or very little impact on existing application code.

This version of the {java-client} supports all {es} APIs are implemented except the
Vector tile search API and the Find structure API.
Expand Down
2 changes: 1 addition & 1 deletion java-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ dependencies {
api("org.eclipse.parsson:parsson:1.0.0")

// EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
// http://json-b.net/
// https://github.com/eclipse-ee4j/jsonb-api
compileOnly("jakarta.json.bind", "jakarta.json.bind-api", "2.0.0")
testImplementation("jakarta.json.bind", "jakarta.json.bind-api", "2.0.0")

Expand Down