Skip to content

Commit 57b7f2c

Browse files
authored
Merge pull request #672 from marklogic/release/4.6.0
Release/4.6.0
2 parents b4aa51b + 7a79264 commit 57b7f2c

File tree

66 files changed

+344
-123
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+344
-123
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ running Gradle 7 or higher, you'll need to use ml-gradle 4.3.0 or higher.
3737

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

40-
plugins { id "com.marklogic.ml-gradle" version "4.5.3" }
40+
plugins { id "com.marklogic.ml-gradle" version "4.6.0" }
4141

4242
Then run:
4343

build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,15 @@ plugins {
1313
}
1414

1515
group = "com.marklogic"
16-
version = "4.5.3"
16+
version = "4.6.0"
1717

1818
java {
1919
sourceCompatibility = 1.8
2020
targetCompatibility = 1.8
2121
}
2222

2323
repositories {
24+
mavenLocal()
2425
mavenCentral()
2526
maven {
2627
url "https://nexus.marklogic.com/repository/maven-snapshots/"
@@ -31,12 +32,12 @@ dependencies {
3132
implementation gradleApi()
3233
implementation localGroovy()
3334

34-
api 'com.marklogic:ml-app-deployer:4.5.3'
35+
api 'com.marklogic:ml-app-deployer:4.6.0'
3536
implementation "com.marklogic:mlcp-util:1.0.1"
36-
implementation "com.marklogic:marklogic-data-movement-components:2.6.0"
37+
implementation "com.marklogic:marklogic-data-movement-components:2.7.0"
3738
implementation "commons-io:commons-io:2.11.0"
3839

39-
compileOnly "com.marklogic:marklogic-unit-test-client:1.3.0"
40+
compileOnly "com.marklogic:marklogic-unit-test-client:1.4.0"
4041

4142
testImplementation localGroovy()
4243
testImplementation gradleTestKit()

examples/alert-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "java"
33
id "eclipse"
4-
id "com.marklogic.ml-gradle" version "4.5.3"
4+
id "com.marklogic.ml-gradle" version "4.6.0"
55
}
66

77
repositories {

examples/corb2-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ buildscript {
2121
}
2222

2323
plugins {
24-
id "com.marklogic.ml-gradle" version "4.5.3"
24+
id "com.marklogic.ml-gradle" version "4.6.0"
2525
}
2626

2727
repositories {

examples/cpf-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "java"
33
id "eclipse"
4-
id "com.marklogic.ml-gradle" version "4.5.3"
4+
id "com.marklogic.ml-gradle" version "4.6.0"
55
}
66

77
repositories {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
plugins {
2-
id "com.marklogic.ml-gradle" version "4.5.3"
2+
id "com.marklogic.ml-gradle" version "4.6.0"
33
}

examples/custom-rest-rewriter-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.marklogic.ml-gradle" version "4.5.3"
2+
id "com.marklogic.ml-gradle" version "4.6.0"
33
}
44

55
task generateCustomRewriterModules {

examples/data-services/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "java"
33
id "net.saliman.properties" version "1.5.1"
4-
id "com.marklogic.ml-gradle" version "4.5.3"
4+
id "com.marklogic.ml-gradle" version "4.6.0"
55
id 'com.marklogic.ml-development-tools' version '6.0.0'
66
}
77

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

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

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

examples/disconnected-project-using-plugins-and-gradlew/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
plugins {
1515
id 'java' //optional - delete if not needed
1616
id 'net.saliman.properties' version '1.5.1'
17-
id 'com.marklogic.ml-gradle' version "4.5.3"
17+
id 'com.marklogic.ml-gradle' version "4.6.0"
1818
}
1919

2020
repositories {

0 commit comments

Comments
 (0)