Skip to content

Commit 9be8205

Browse files
committed
Update stuff to include 4.0 updates
1 parent 409f45a commit 9be8205

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

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 '3.0.0'
16+
id 'com.marklogic.ml-data-hub' version '4.0.0'
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 '3.0.0'
10+
id 'com.marklogic.ml-data-hub' version '4.0.0'
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 '3.0.0'
10+
id 'com.marklogic.ml-data-hub' version '4.0.0'
1111
}

examples/data-integration-tests/build.gradle

Lines changed: 3 additions & 3 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 '2.0.3'
22+
id 'com.marklogic.ml-data-hub' version '4.0.0'
2323

2424
id "org.jetbrains.kotlin.jvm" version "1.2.21"
2525
}
@@ -34,8 +34,8 @@ 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:2.0.3'
38-
compile 'com.marklogic:marklogic-xcc:9.0.4'
37+
compile 'com.marklogic:marklogic-data-hub:4.0.0'
38+
compile 'com.marklogic:marklogic-xcc:9.0.6'
3939
compile 'com.marklogic:marklogic-client-api:4.1.0'
4040
// prototyping with kotlin tests
4141
compile 'io.github.microutils:kotlin-logging:1.4.6'

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 '3.0.0'
10+
id 'com.marklogic.ml-data-hub' version '4.0.0'
1111
}
1212

1313
ext {

examples/healthcare/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ The sample data is located in the input/ folder.
1515
```
1616

1717
# TLDR; How do I run it?
18-
1. Download the [latest quick-start war](https://github.com/marklogic/marklogic-data-hub/releases/download/v3.0.0/quick-start-3.0.0.war) into this folder.
18+
1. Download the [latest quick-start war](https://github.com/marklogic/marklogic-data-hub/releases/download/v4.0.0/quick-start-4.0.0.war) into this folder.
1919

20-
1. Run the quick-start jar `java -jar quick-start-3.0.0.war`
20+
1. Run the quick-start jar `java -jar quick-start-4.0.0.war`
2121

2222
1. Open your web browser to [http://localhost:8080](http://localhost:8080).
2323

examples/load-binaries/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
This example shows how to load binary documents with the Hub Framework.
33

44
# TLDR; How do I run it?
5-
1. Download the [latest quick-start war](https://github.com/marklogic/marklogic-data-hub/releases/download/v3.0.0/quick-start-3.0.0.war) into this folder.
5+
1. Download the [latest quick-start war](https://github.com/marklogic/marklogic-data-hub/releases/download/v4.0.0/quick-start-4.0.0.war) into this folder.
66

7-
1. Run the quick-start war `java -jar quick-start-3.0.0.war`
7+
1. Run the quick-start war `java -jar quick-start-4.0.0.war`
88

99
1. Open your web browser to [http://localhost:8080](http://localhost:8080).
1010

examples/online-store/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The data are separated into 2 folders under the input/ folder.
1616
# TLDR; How do I run it?
1717
Check out the [Getting Started Tutorial](https://marklogic.github.io/marklogic-data-hub/) on the Datahub Site.
1818

19-
You will want to download the latest 2.x release of the [QuickStart Application](https://github.com/marklogic/marklogic-data-hub/releases/download/v2.0.4/quick-start-2.0.4.war) and save it in this directory.
19+
You will want to download the latest 4.x release of the [QuickStart Application](https://github.com/marklogic/marklogic-data-hub/releases/download/v4.0.0/quick-start-4.0.4.war) and save it in this directory.
2020

2121
# Wait. What is a data Hub?
2222
Get started over at the [Data Hub Site](https://marklogic.github.io/marklogic-data-hub/what/)

examples/spring-batch/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
id 'application'
44
id 'idea'
55
id 'net.saliman.properties' version '1.4.6'
6-
id 'com.marklogic.ml-data-hub' version '3.0.0'
6+
id 'com.marklogic.ml-data-hub' version '4.0.0'
77
}
88

99
repositories {
@@ -12,7 +12,7 @@ repositories {
1212
}
1313

1414
dependencies {
15-
compile 'com.marklogic:marklogic-data-hub:3.0.0'
15+
compile 'com.marklogic:marklogic-data-hub:4.0.0'
1616
compile "com.marklogic:marklogic-spring-batch-core:1.7.0"
1717
compile 'com.marklogic:spring-batch-rdbms:1.7.0'
1818

examples/ssl/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 '3.0.0'
10+
id 'com.marklogic.ml-data-hub' version '4.0.0'
1111
}
1212

1313
ext {

0 commit comments

Comments
 (0)