Skip to content

Commit b7cdbdd

Browse files
authored
Merge pull request #308 from rashtao/arangodb-7.16
ArangoDB 7.16
2 parents bf35a81 + b07e75c commit b7cdbdd

File tree

3 files changed

+3
-64
lines changed

3 files changed

+3
-64
lines changed

jnosql-arangodb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<description>The Eclipse JNoSQL layer to ArangoDB</description>
2929

3030
<properties>
31-
<arango.driver>7.15.0</arango.driver>
31+
<arango.driver>7.16.0</arango.driver>
3232

3333
</properties>
3434

jnosql-arangodb/src/main/java/org/eclipse/jnosql/databases/arangodb/communication/ArangoDBConfiguration.java

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@
3030
*/
3131
public abstract class ArangoDBConfiguration {
3232

33-
protected ArangoDB.Builder builder = new ArangoDB.Builder()
34-
.serde(new JsonbSerde());
33+
protected ArangoDB.Builder builder = new ArangoDB.Builder();
3534

3635
/**
3736
* Adds a host in the arangodb builder
@@ -93,13 +92,7 @@ public void setUseSSL(boolean value) {
9392
}
9493

9594
/**
96-
* Set the ArangoDB serde for the user data. Note that the provided
97-
* serde must support serializing and deserializing JsonP types,
98-
* i.e. {@link jakarta.json.JsonValue} and its children.
99-
* By default, the builder is configured to use {@link JsonbSerde};
100-
* this setter allows overriding it, i.e. providing an instance of
101-
* {@link JsonbSerde} that uses a specific {@link jakarta.json.bind.Jsonb}
102-
* instance.
95+
* Set the ArangoDB serde
10396
*
10497
* @param serde the serde
10598
*/

jnosql-arangodb/src/main/java/org/eclipse/jnosql/databases/arangodb/communication/JsonbSerde.java

Lines changed: 0 additions & 54 deletions
This file was deleted.

0 commit comments

Comments
 (0)