Skip to content

Commit 636fc67

Browse files
committed
Bumped to 4.2.0
1 parent 0ef32b5 commit 636fc67

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

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

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

37-
plugins { id "com.marklogic.ml-gradle" version "4.1.1" }
37+
plugins { id "com.marklogic.ml-gradle" version "4.2.0" }
3838

3939
Then run:
4040

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
// mavenLocal()
55
// }
66
// dependencies {
7-
// classpath "com.marklogic:ml-gradle:4.1.1"
7+
// classpath "com.marklogic:ml-gradle:4.2.0"
88
// }
99
//}
1010

1111
plugins {
1212
id "net.saliman.properties" version "1.5.1"
13-
id "com.marklogic.ml-gradle" version "4.1.1"
13+
id "com.marklogic.ml-gradle" version "4.2.0"
1414
}
1515

1616
//apply plugin: "com.marklogic.ml-gradle"

examples/local-testing-project/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Set this to the version you used when running
22
# "gradle -Pversion=(something) publishToMavenLocal" on your local ml-gradle repo
3-
mlGradleVersion=4.1.1
3+
mlGradleVersion=4.2.0
44

55
mlHost=localhost
66
mlAppName=example

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