Skip to content

Commit a980a8f

Browse files
committed
Update version #s for examples and readying for the 4.1.1 release
1 parent 8f644c0 commit a980a8f

File tree

19 files changed

+25
-25
lines changed

19 files changed

+25
-25
lines changed

examples/DHS-e2e/DHS/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ plugins {
2020

2121
// This gradle plugin extends the ml-gradle plugin with
2222
// commands that make the Data Hub Framework do its magic
23-
id 'com.marklogic.ml-data-hub' version '4.1.0'
23+
id 'com.marklogic.ml-data-hub' version '4.1.1'
2424
}
2525

2626
apply plugin: "com.marklogic.ml-data-hub"
@@ -46,7 +46,7 @@ repositories {
4646
dependencies {
4747
// this allows you to write custom java code that depends
4848
// on the Data Hub Framework library
49-
compile 'com.marklogic:marklogic-data-hub:4.1.0'
49+
compile 'com.marklogic:marklogic-data-hub:4.1.1'
5050
compile 'com.marklogic:marklogic-xcc:9.0.7'
5151
mlcp "com.marklogic:mlcp:9.0.7"
5252
mlcp files("lib")

examples/DHS-e2e/DHS/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mlDHFVersion=4.1.0
1+
mlDHFVersion=4.1.1
22
mlHost=
33
mlIsHostLoadBalancer=true
44

examples/barebones/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ plugins {
1313
// it includes ml-gradle. This plugin is what lets you
1414
// run DHF (Data Hub Framework) tasks from the
1515
// command line
16-
id 'com.marklogic.ml-data-hub' version '4.0.3'
16+
id 'com.marklogic.ml-data-hub' version '4.1.1'
1717
}
1818
```
1919

examples/barebones/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ plugins {
77
// it includes ml-gradle. This plugin is what lets you
88
// run DHF (Data Hub Framework) tasks from the
99
// command line
10-
id 'com.marklogic.ml-data-hub' version '4.0.3'
10+
id 'com.marklogic.ml-data-hub' version '4.1.1'
1111
}

examples/custom-tokens/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ plugins {
77
// it includes ml-gradle. This plugin is what lets you
88
// run DHF (Data Hub Framework) tasks from the
99
// command line
10-
id 'com.marklogic.ml-data-hub' version '4.0.3'
10+
id 'com.marklogic.ml-data-hub' version '4.1.1'
1111
}

examples/data-integration-tests/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ plugins {
1919

2020
// This gradle plugin extends the ml-gradle plugin with
2121
// commands that make the Data Hub Framework do its magic
22-
id 'com.marklogic.ml-data-hub' version '4.0.3'
22+
id 'com.marklogic.ml-data-hub' version '4.1.1'
2323

2424
id "org.jetbrains.kotlin.jvm" version "1.2.21"
2525
}
@@ -34,7 +34,7 @@ repositories {
3434
dependencies {
3535
// this allows you to write custom java code that depends
3636
// on the Data Hub Framework library
37-
compile 'com.marklogic:marklogic-data-hub:4.0.3'
37+
compile 'com.marklogic:marklogic-data-hub:4.1.1'
3838
compile 'com.marklogic:marklogic-xcc:9.0.7'
3939
compile 'com.marklogic:marklogic-client-api:4.1.1'
4040
// prototyping with kotlin tests

examples/dhf4-with-tests/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.4.6'
4-
id 'com.marklogic.ml-data-hub' version '4.1.0'
4+
id 'com.marklogic.ml-data-hub' version '4.1.1'
55
}
66

77
repositories {

examples/dhf4-with-tests/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mlDHFVersion=4.1.0-rc2
1+
mlDHFVersion=4.1.1
22
mlHost=localhost
33

44
# Demonstrates the use of multiple module paths with 4.1.0

examples/disconnected-project/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ plugins {
1919

2020
// This gradle plugin extends the ml-gradle plugin with
2121
// commands that make the Data Hub Framework do its magic
22-
id 'com.marklogic.ml-data-hub' version '4.0.3'
22+
id 'com.marklogic.ml-data-hub' version '4.1.1'
2323
}
2424

2525
repositories {
@@ -42,7 +42,7 @@ dependencies {
4242
// this allows you to write custom java code that depends
4343
// on the Data Hub Framework library
4444
// Remove if not needed
45-
compile 'com.marklogic:marklogic-data-hub:4.0.3'
45+
compile 'com.marklogic:marklogic-data-hub:4.1.1'
4646
compile 'com.marklogic:marklogic-xcc:9.0.7'
4747

4848
//sample mlcp dependency. Remove if not required

examples/external-security/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
// it includes ml-gradle. This plugin is what lets you
88
// run DHF (Data Hub Framework) tasks from the
99
// command line
10-
id 'com.marklogic.ml-data-hub' version '4.0.3'
10+
id 'com.marklogic.ml-data-hub' version '4.1.1'
1111
}
1212

1313
ext {

0 commit comments

Comments
 (0)