Skip to content

Commit 45ccbb2

Browse files
DEVO-774: Updating the version to 5.8.1
1 parent d47b00e commit 45ccbb2

File tree

17 files changed

+20
-20
lines changed

17 files changed

+20
-20
lines changed

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ the "testing" property on the command line - e.g.
1313
After initializing the project, you may want to add "testing=true" to the gradle.properties file so that you do not need to include it as a command line property.
1414

1515
If you are trying to use a snapshot version of the Gradle plugin and get an error about not being able to find the
16-
plugin - e.g. "Could not find com.marklogic:ml-data-hub:5.8-SNAPSHOT" - then run the following Gradle task from the root
16+
plugin - e.g. "Could not find com.marklogic:ml-data-hub:5.8.1" - then run the following Gradle task from the root
1717
of this repository (this is also described in the CONTRIBUTING.md guide in the section named "Testing changes to the
1818
Data Hub Gradle plugin"):
1919

examples/SLED/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
if (project.hasProperty("testing")) {
9-
classpath "com.marklogic:ml-data-hub:5.8-SNAPSHOT"
9+
classpath "com.marklogic:ml-data-hub:5.8.1"
1010
} else {
1111
classpath "com.marklogic:ml-data-hub:5.7.1"
1212
}
@@ -37,7 +37,7 @@ dependencies {
3737

3838
// Makes the DHF JUnit5 library available for tests
3939
if (project.hasProperty("testing")) {
40-
testImplementation "com.marklogic:marklogic-data-hub-junit5:5.8-SNAPSHOT"
40+
testImplementation "com.marklogic:marklogic-data-hub-junit5:5.8.1"
4141
} else {
4242
testImplementation "com.marklogic:marklogic-data-hub-junit5:5.7.1"
4343
}

examples/dh-5-example/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
if (project.hasProperty("testing")) {
9-
classpath "com.marklogic:ml-data-hub:5.8-SNAPSHOT"
9+
classpath "com.marklogic:ml-data-hub:5.8.1"
1010
} else {
1111
classpath "com.marklogic:ml-data-hub:5.7.1"
1212
}
@@ -26,7 +26,7 @@ repositories {
2626

2727
dependencies {
2828
if (project.hasProperty("testing")) {
29-
implementation "com.marklogic:marklogic-data-hub:5.8-SNAPSHOT"
29+
implementation "com.marklogic:marklogic-data-hub:5.8.1"
3030
} else {
3131
implementation "com.marklogic:marklogic-data-hub:5.7.1"
3232
}

examples/dhf5-custom-hook/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
dependencies {
99
classpath "net.saliman:gradle-properties-plugin:1.5.1"
1010
if (project.hasProperty("testing")) {
11-
classpath "com.marklogic:ml-data-hub:5.8-SNAPSHOT"
11+
classpath "com.marklogic:ml-data-hub:5.8.1"
1212
} else {
1313
classpath "com.marklogic:ml-data-hub:5.5.0"
1414
}

examples/insurance/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
dependencies {
99
classpath "net.saliman:gradle-properties-plugin:1.5.1"
1010
if (project.hasProperty("testing")) {
11-
classpath "com.marklogic:ml-data-hub:5.8-SNAPSHOT"
11+
classpath "com.marklogic:ml-data-hub:5.8.1"
1212
} else {
1313
classpath "com.marklogic:ml-data-hub:5.7.1"
1414
}

examples/mapping-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
dependencies {
99
classpath "net.saliman:gradle-properties-plugin:1.5.1"
1010
if (project.hasProperty("testing")) {
11-
classpath "com.marklogic:ml-data-hub:5.8-SNAPSHOT"
11+
classpath "com.marklogic:ml-data-hub:5.8.1"
1212
} else {
1313
classpath "com.marklogic:ml-data-hub:5.7.1"
1414
}

examples/patient-hub/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
dependencies {
99
classpath "net.saliman:gradle-properties-plugin:1.5.1"
1010
if (project.hasProperty("testing")) {
11-
classpath "com.marklogic:ml-data-hub:5.8-SNAPSHOT"
11+
classpath "com.marklogic:ml-data-hub:5.8.1"
1212
} else {
1313
classpath "com.marklogic:ml-data-hub:5.7.1"
1414
}

examples/reference-entity-model/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
if (project.hasProperty("testing")) {
9-
classpath "com.marklogic:ml-data-hub:5.8-SNAPSHOT"
9+
classpath "com.marklogic:ml-data-hub:5.8.1"
1010
} else {
1111
classpath "com.marklogic:ml-data-hub:5.7.1"
1212
}
@@ -37,7 +37,7 @@ dependencies {
3737

3838
// Makes the DHF JUnit5 library available for tests
3939
if (project.hasProperty("testing")) {
40-
testImplementation "com.marklogic:marklogic-data-hub-junit5:5.8-SNAPSHOT"
40+
testImplementation "com.marklogic:marklogic-data-hub-junit5:5.8.1"
4141
} else {
4242
testImplementation "com.marklogic:marklogic-data-hub-junit5:5.7.1"
4343
}

examples/smart-mastering-complete/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
dependencies {
99
classpath "net.saliman:gradle-properties-plugin:1.5.1"
1010
if (project.hasProperty("testing")) {
11-
classpath "com.marklogic:ml-data-hub:5.8-SNAPSHOT"
11+
classpath "com.marklogic:ml-data-hub:5.8.1"
1212
} else {
1313
classpath "com.marklogic:ml-data-hub:5.7.1"
1414
}

examples/snapshot-testing/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
classpath "net.saliman:gradle-properties-plugin:1.5.1"
9-
classpath "com.marklogic:ml-data-hub:5.8-SNAPSHOT"
9+
classpath "com.marklogic:ml-data-hub:5.8.1"
1010
}
1111
}
1212

examples/step-interceptors/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
dependencies {
88
classpath "net.saliman:gradle-properties-plugin:1.5.1"
99
if (project.hasProperty("testing")) {
10-
classpath "com.marklogic:ml-data-hub:5.8-SNAPSHOT"
10+
classpath "com.marklogic:ml-data-hub:5.8.1"
1111
} else {
1212
classpath "com.marklogic:ml-data-hub:5.7.1"
1313
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=5.8-SNAPSHOT
1+
version=5.8.1
22
publishUrl=file:../marklogic-data-hub/releases
33
systemProp.file.encoding=utf-8
44
# disabling TLSv3 as a workaround for the bug in openJDK 11(https://bugs.openjdk.java.net/browse/JDK-8213202)

marklogic-data-hub-central/ui/e2e/hc-qa-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
}
88
dependencies {
99
if (project.hasProperty("testing")) {
10-
classpath "com.marklogic:ml-data-hub:5.8-SNAPSHOT"
10+
classpath "com.marklogic:ml-data-hub:5.8.1"
1111
} else {
1212
classpath "com.marklogic:ml-data-hub:5.7.1"
1313
}

marklogic-data-hub/src/main/java/com/marklogic/hub/impl/VersionInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,6 @@ public static String getBuildVersion() {
8282
}
8383

8484
String version = properties.getProperty("version");
85-
return "${project.version}".equals(version) ? "5.8-SNAPSHOT" : version;
85+
return "${project.version}".equals(version) ? "5.8.1" : version;
8686
}
8787
}

marklogic-data-hub/src/main/resources/hub-internal-config/security/roles/data-hub-admin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"role-name": "data-hub-admin",
3-
"description": "5.8-SNAPSHOT: Permits actions pertaining to administering a Data Hub application",
3+
"description": "5.8.1: Permits actions pertaining to administering a Data Hub application",
44
"role": [
55
"data-hub-developer"
66
],

marklogic-data-hub/src/main/resources/scaffolding/build_gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ plugins {
88
// Applies the Data Hub Gradle plugin, which extends ml-gradle with behavior specific to Data Hub.
99
// For more information on this plugin, see https://docs.marklogic.com/datahub/tools/gradle/dhf-gradle-plugin.html .
1010
// For more information on ml-gradle, see https://github.com/marklogic-community/ml-gradle .
11-
id 'com.marklogic.ml-data-hub' version '5.8-SNAPSHOT'
11+
id 'com.marklogic.ml-data-hub' version '5.8.1'
1212
}

performance-tests/projects/commoncrawl/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
if (project.hasProperty("testing")) {
9-
classpath "com.marklogic:ml-data-hub:5.8-SNAPSHOT"
9+
classpath "com.marklogic:ml-data-hub:5.8.1"
1010

1111
} else {
1212
classpath "com.marklogic:ml-data-hub:5.2.1"

0 commit comments

Comments
 (0)