Skip to content

Commit ba08550

Browse files
committed
Bumped examples to 6.2.2
1 parent 5975ce8 commit ba08550

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ To use the API in your [Maven](https://maven.apache.org/) project, include the f
4141
<dependency>
4242
<groupId>com.marklogic</groupId>
4343
<artifactId>marklogic-client-api</artifactId>
44-
<version>6.2.1</version>
44+
<version>6.2.2</version>
4545
</dependency>
4646

4747
To use the API in your [Gradle](https://gradle.org/) project, include the following in your build.gradle file:
4848

4949
dependencies {
50-
implementation "com.marklogic:marklogic-client-api:6.2.1"
50+
implementation "com.marklogic:marklogic-client-api:6.2.2"
5151
}
5252

5353
Next, read [The Java API in Five Minutes](http://developer.marklogic.com/try/java/index) to get started.
@@ -130,7 +130,7 @@ https://developer.marklogic.com/free-developer
130130

131131
To obtain verified downloads signed with MarkLogic's PGP key, use maven tools or directly download
132132
the .jar and .asc files from
133-
[maven central](https://repo1.maven.org/maven2/com/marklogic/marklogic-client-api/5.3.0/). MarkLogic's
133+
[maven central](https://repo1.maven.org/maven2/com/marklogic/marklogic-client-api/). MarkLogic's
134134
pgp key ID is 48D4B86E and it is available from pgp.mit.edu by installing gnupg and running the command:
135135

136136
$ gpg --keyserver pgp.mit.edu --recv-key 48D4B86E

marklogic-client-api/src/main/java/com/marklogic/client/DatabaseClientBuilder.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,13 @@ public DatabaseClientBuilder withCertificateAuth(String file, String password) {
158158
.withCertificatePassword(password);
159159
}
160160

161+
/**
162+
*
163+
* @param sslContext
164+
* @param trustManager
165+
* @return
166+
* @since 6.2.2
167+
*/
161168
public DatabaseClientBuilder withCertificateAuth(SSLContext sslContext, X509TrustManager trustManager) {
162169
return withAuthType(AUTH_TYPE_CERTIFICATE)
163170
.withSSLContext(sslContext)

0 commit comments

Comments
 (0)