Skip to content

Commit 30b6179

Browse files
committed
Bumped to 3.13.0
1 parent fd4857d commit 30b6179

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

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

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

27-
plugins { id "com.marklogic.ml-gradle" version "3.12.0" }
27+
plugins { id "com.marklogic.ml-gradle" version "3.13.0" }
2828

2929
Then run:
3030

examples/dependency-project/dhf-client-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
}
88
dependencies {
9-
classpath "com.marklogic:ml-gradle:3.13.beta1"
9+
classpath "com.marklogic:ml-gradle:3.13.0"
1010
classpath "gradle.plugin.com.marklogic:ml-data-hub:4.2.2"
1111
}
1212
}

examples/dependency-project/ml-gradle-client-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
jcenter()
44
}
55
dependencies {
6-
classpath "com.marklogic:ml-gradle:3.13.beta1"
6+
classpath "com.marklogic:ml-gradle:3.13.0"
77
}
88
}
99

examples/sample-project/build.gradle

Lines changed: 1 addition & 1 deletion
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.10.0"
11+
classpath "com.marklogic:ml-gradle:3.13.0"
1212
}
1313
}
1414

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.13.beta1
2+
version=3.13.0
33
javadocsDir=../gh-pages-marklogic-java/javadocs
44

5-
mlAppDeployerDependency=com.marklogic:ml-app-deployer:3.13.beta1
5+
mlAppDeployerDependency=com.marklogic:ml-app-deployer:3.13.0
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:0.12.0

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.4.6"' +
45-
'\n id "com.marklogic.ml-gradle" version "3.12.0"' +
45+
'\n id "com.marklogic.ml-gradle" version "3.13.0"' +
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)