Skip to content

Commit 93dbd85

Browse files
authored
Merge pull request #1751 from marklogic/feature/readme-update
Updated Java versions in README
2 parents 29653e4 + ef749b4 commit 93dbd85

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
![GitHub release](https://img.shields.io/github/release/marklogic/java-client-api.svg)
22
![GitHub last commit](https://img.shields.io/github/last-commit/marklogic/java-client-api.svg)
33
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
4-
[![Known Vulnerabilities](https://snyk.io/test/github/marklogic/java-client-api/badge.svg)](https://snyk.io/test/github/marklogic/java-client-api)
54

65
# The MarkLogic Java Client
76

@@ -19,11 +18,12 @@ The client supports the following core features of the MarkLogic database:
1918
* Use Optimistic Locking to detect contention without creating locks on the server.
2019
* Execute ACID modifications so the change either succeeds or throws an exception.
2120
* 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.
2422

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
2727
necessary dependencies are available in your application's classpath.
2828

2929
## QuickStart
@@ -33,13 +33,13 @@ To use the client in your [Maven](https://maven.apache.org/) project, include th
3333
<dependency>
3434
<groupId>com.marklogic</groupId>
3535
<artifactId>marklogic-client-api</artifactId>
36-
<version>6.4.1</version>
36+
<version>7.1.0</version>
3737
</dependency>
3838

3939
To use the client in your [Gradle](https://gradle.org/) project, include the following in your `build.gradle` file:
4040

4141
dependencies {
42-
implementation "com.marklogic:marklogic-client-api:6.4.1"
42+
implementation "com.marklogic:marklogic-client-api:7.1.0"
4343
}
4444

4545
Next, read [The Java API in Five Minutes](http://developer.marklogic.com/try/java/index) to get started.

0 commit comments

Comments
 (0)