Skip to content

Commit 557c2c1

Browse files
committed
Bumped to 4.2.1
1 parent 46fab68 commit 557c2c1

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
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.2.0" }
37+
plugins { id "com.marklogic.ml-gradle" version "4.2.1" }
3838

3939
Then run:
4040

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
}
1313

1414
group = "com.marklogic"
15-
version = "4.2.0"
15+
version = "4.2.1"
1616

1717
sourceCompatibility = "8"
1818
targetCompatibility = "8"
@@ -29,7 +29,7 @@ repositories {
2929
dependencies {
3030
implementation gradleApi()
3131
implementation localGroovy()
32-
api "com.marklogic:ml-app-deployer:4.2.0"
32+
api "com.marklogic:ml-app-deployer:4.2.1"
3333
implementation "com.marklogic:mlcp-util:0.9.0"
3434
implementation "com.marklogic:marklogic-data-movement-components:2.3.0"
3535
implementation "commons-io:commons-io:2.8.0"

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.2.0
3+
mlGradleVersion=4.2.1
44

55
mlHost=localhost
66
mlAppName=example

examples/sample-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
mavenCentral()
1010
}
1111
dependencies {
12-
classpath "com.marklogic:ml-gradle:4.2.0"
12+
classpath "com.marklogic:ml-gradle:4.2.1"
1313
}
1414
}
1515

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