Skip to content

Commit 9bc6ff4

Browse files
committed
Bumped to 3.15.2
1 parent b93bbf3 commit 9bc6ff4

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ First, [install Gradle](https://gradle.org/install/).
3333

3434
Then, in an empty directory, create a file named "build.gradle" with your favorite text editor and enter the following:
3535

36-
plugins { id "com.marklogic.ml-gradle" version "3.15.1" }
36+
plugins { id "com.marklogic.ml-gradle" version "3.15.2" }
3737

3838
Then run:
3939

examples/sample-project/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
jcenter()
99
}
1010
dependencies {
11-
classpath "com.marklogic:ml-gradle:3.15.1"
11+
classpath "com.marklogic:ml-gradle:3.15.2"
1212
}
1313
}
1414

@@ -55,7 +55,8 @@ configurations {
5555
*/
5656
dependencies {
5757
// Needed to compile and run the JUnit tests
58-
testCompile "com.marklogic:ml-junit:3.0.0"
58+
// Note that ml-junit has been deprecated and replaced by marklogic-unit-test + marklogic-junit
59+
testCompile "com.marklogic:ml-junit:3.2.0"
5960
testCompile "com.jayway.restassured:rest-assured:2.4.1"
6061

6162
// Required for Java 11

examples/unit-test-project/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mlGradleVersion=3.15.1
1+
mlGradleVersion=3.15.2
22
marklogicUnitTestVersion=1.0.beta
33

44
mlHost=localhost

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
group=com.marklogic
2-
version=3.15.1
2+
version=3.15.2
33
javadocsDir=../gh-pages-marklogic-java/javadocs
44

5-
mlAppDeployerDependency=com.marklogic:ml-app-deployer:3.15.0
5+
mlAppDeployerDependency=com.marklogic:ml-app-deployer:3.15.1
66
mlcpUtilDependency=com.marklogic:mlcp-util:0.9.0
77
mlDataMovementDependency=com.marklogic:marklogic-data-movement-components:1.2.0
88
mlUnitTestDependency=com.marklogic:marklogic-unit-test-client:1.0.beta

src/main/groovy/com/marklogic/gradle/task/NewProjectTask.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class NewProjectTask extends MarkLogicTask {
4242
if (ant.mlPropertiesPlugin == "y") {
4343
def text = 'plugins {' +
4444
'\n id "net.saliman.properties" version "1.5.1"' +
45-
'\n id "com.marklogic.ml-gradle" version "3.15.1"' +
45+
'\n id "com.marklogic.ml-gradle" version "3.15.2"' +
4646
'\n}'
4747
println "Updating build.gradle so that the Gradle properties plugin can be applied"
4848
writeFile("build.gradle", text)

0 commit comments

Comments
 (0)