diff --git a/README.md b/README.md index ec0eaae15..be9e1944e 100644 --- a/README.md +++ b/README.md @@ -33,13 +33,13 @@ To use the client in your [Maven](https://maven.apache.org/) project, include th com.marklogic marklogic-client-api - 7.1.0 + 7.2.0 To use the client in your [Gradle](https://gradle.org/) project, include the following in your `build.gradle` file: dependencies { - implementation "com.marklogic:marklogic-client-api:7.1.0" + implementation "com.marklogic:marklogic-client-api:7.2.0" } Next, read [The Java API in Five Minutes](http://developer.marklogic.com/try/java/index) to get started. diff --git a/gradle.properties b/gradle.properties index e9f7503b9..43995279a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ group=com.marklogic -version=7.2-SNAPSHOT +version=7.3-SNAPSHOT describedName=MarkLogic Java Client API publishUrl=file:../marklogic-java/releases diff --git a/ml-development-tools/src/test/example-project/build.gradle b/ml-development-tools/src/test/example-project/build.gradle index 490cfada1..c0ce194f3 100644 --- a/ml-development-tools/src/test/example-project/build.gradle +++ b/ml-development-tools/src/test/example-project/build.gradle @@ -4,7 +4,7 @@ buildscript { mavenCentral() } dependencies { - classpath "com.marklogic:ml-development-tools:7.1.0" + classpath "com.marklogic:ml-development-tools:7.2.0" } } @@ -23,7 +23,7 @@ repositories { } dependencies { - implementation 'com.marklogic:marklogic-client-api:7.1.0' + implementation 'com.marklogic:marklogic-client-api:7.2.0' } tasks.register("testFullPath", com.marklogic.client.tools.gradle.EndpointProxiesGenTask) {