You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -19,11 +18,12 @@ The client supports the following core features of the MarkLogic database:
19
18
* Use Optimistic Locking to detect contention without creating locks on the server.
20
19
* Execute ACID modifications so the change either succeeds or throws an exception.
21
20
* Execute multi-statement transactions so changes to multiple documents succeed or fail together.
22
-
* Call Data Services by means of a Java interface on the client for data functionality
23
-
implemented by an endpoint on the server.
21
+
* Call Data Services via a Java interface on the client for data functionality implemented by an endpoint on the server.
24
22
25
-
The client can be used in applications running on Java 8, 11, and 17. If you are using Java 11 or higher and intend
26
-
to use [JAXB](https://docs.oracle.com/javase/tutorial/jaxb/intro/), please see the section below for ensuring that the
23
+
The client is tested on Java 8, 11, 17, and 21 and can safely be used on each of those major Java versions. The client
24
+
may work on more recent major versions of Java but has not been thoroughly tested on those yet.
25
+
26
+
If you are using Java 11 or higher and intend to use [JAXB](https://docs.oracle.com/javase/tutorial/jaxb/intro/), please see the section below for ensuring that the
27
27
necessary dependencies are available in your application's classpath.
28
28
29
29
## QuickStart
@@ -33,13 +33,13 @@ To use the client in your [Maven](https://maven.apache.org/) project, include th
33
33
<dependency>
34
34
<groupId>com.marklogic</groupId>
35
35
<artifactId>marklogic-client-api</artifactId>
36
-
<version>6.4.1</version>
36
+
<version>7.1.0</version>
37
37
</dependency>
38
38
39
39
To use the client in your [Gradle](https://gradle.org/) project, include the following in your `build.gradle` file:
0 commit comments