Skip to content

Commit

Permalink
Bumped to 3.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrudin committed Jul 11, 2019
1 parent b93bbf3 commit 9bc6ff4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ First, [install Gradle](https://gradle.org/install/).

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

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

Then run:

Expand Down
5 changes: 3 additions & 2 deletions examples/sample-project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
jcenter()
}
dependencies {
classpath "com.marklogic:ml-gradle:3.15.1"
classpath "com.marklogic:ml-gradle:3.15.2"
}
}

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

// Required for Java 11
Expand Down
2 changes: 1 addition & 1 deletion examples/unit-test-project/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mlGradleVersion=3.15.1
mlGradleVersion=3.15.2
marklogicUnitTestVersion=1.0.beta

mlHost=localhost
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
group=com.marklogic
version=3.15.1
version=3.15.2
javadocsDir=../gh-pages-marklogic-java/javadocs

mlAppDeployerDependency=com.marklogic:ml-app-deployer:3.15.0
mlAppDeployerDependency=com.marklogic:ml-app-deployer:3.15.1
mlcpUtilDependency=com.marklogic:mlcp-util:0.9.0
mlDataMovementDependency=com.marklogic:marklogic-data-movement-components:1.2.0
mlUnitTestDependency=com.marklogic:marklogic-unit-test-client:1.0.beta
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class NewProjectTask extends MarkLogicTask {
if (ant.mlPropertiesPlugin == "y") {
def text = 'plugins {' +
'\n id "net.saliman.properties" version "1.5.1"' +
'\n id "com.marklogic.ml-gradle" version "3.15.1"' +
'\n id "com.marklogic.ml-gradle" version "3.15.2"' +
'\n}'
println "Updating build.gradle so that the Gradle properties plugin can be applied"
writeFile("build.gradle", text)
Expand Down

0 comments on commit 9bc6ff4

Please sign in to comment.