Skip to content

Commit

Permalink
DHFPROD-7279: Release 5.4.3 datahub
Browse files Browse the repository at this point in the history
  • Loading branch information
Yakov Feldman authored and yakov-feldman committed Apr 28, 2021
1 parent e375f90 commit 4ba2207
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions examples/dh-5-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}
dependencies {
if (project.hasProperty("testing")) {
classpath "com.marklogic:ml-data-hub:5.4-SNAPSHOT"
classpath "com.marklogic:ml-data-hub:5.4.3"
} else {
classpath "gradle.plugin.com.marklogic:ml-data-hub:5.2.0"
}
Expand All @@ -27,7 +27,7 @@ repositories {

dependencies {
if (project.hasProperty("testing")) {
compile "com.marklogic:marklogic-data-hub:5.4-SNAPSHOT"
compile "com.marklogic:marklogic-data-hub:5.4.3"
} else {
compile "com.marklogic:marklogic-data-hub:5.2.0"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/dhf5-custom-hook/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
dependencies {
classpath "net.saliman:gradle-properties-plugin:1.5.1"
if (project.hasProperty("testing")) {
classpath "com.marklogic:ml-data-hub:5.4-SNAPSHOT"
classpath "com.marklogic:ml-data-hub:5.4.3"
} else {
classpath "gradle.plugin.com.marklogic:ml-data-hub:5.2.0"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/insurance/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
dependencies {
classpath "net.saliman:gradle-properties-plugin:1.5.1"
if (project.hasProperty("testing")) {
classpath "com.marklogic:ml-data-hub:5.4-SNAPSHOT"
classpath "com.marklogic:ml-data-hub:5.4.3"
} else {
classpath "gradle.plugin.com.marklogic:ml-data-hub:5.2.0"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/mapping-example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
dependencies {
classpath "net.saliman:gradle-properties-plugin:1.5.1"
if (project.hasProperty("testing")) {
classpath "com.marklogic:ml-data-hub:5.4-SNAPSHOT"
classpath "com.marklogic:ml-data-hub:5.4.3"
} else {
classpath "gradle.plugin.com.marklogic:ml-data-hub:5.2.0"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/patient-hub/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
dependencies {
classpath "net.saliman:gradle-properties-plugin:1.5.1"
if (project.hasProperty("testing")) {
classpath "com.marklogic:ml-data-hub:5.4-SNAPSHOT"
classpath "com.marklogic:ml-data-hub:5.4.3"
} else {
classpath "gradle.plugin.com.marklogic:ml-data-hub:5.2.0"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/smart-mastering-complete/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
dependencies {
classpath "net.saliman:gradle-properties-plugin:1.5.1"
if (project.hasProperty("testing")) {
classpath "com.marklogic:ml-data-hub:5.4-SNAPSHOT"
classpath "com.marklogic:ml-data-hub:5.4.3"
} else {
classpath "gradle.plugin.com.marklogic:ml-data-hub:5.2.0"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/snapshot-testing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}
dependencies {
classpath "net.saliman:gradle-properties-plugin:1.5.1"
classpath "com.marklogic:ml-data-hub:5.4-SNAPSHOT"
classpath "com.marklogic:ml-data-hub:5.4.3"
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=5.4-SNAPSHOT
version=5.4.3
publishUrl=file:../marklogic-data-hub/releases
systemProp.file.encoding=utf-8
# disabling TLSv3 as a workaround for the bug in openJDK 11(https://bugs.openjdk.java.net/browse/JDK-8213202)
Expand Down
2 changes: 1 addition & 1 deletion marklogic-data-hub-central/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ reactUiPath=./ui
springBootUiPath=src/main/resources/static
springBootJarName=marklogic-data-hub-central

# For 5.4-SNAPSHOT, Spring Boot 2.3.x is being used to ensure that it uses Jackson 2.11, which is the same version that
# For 5.4.3, Spring Boot 2.3.x is being used to ensure that it uses Jackson 2.11, which is the same version that
# the ML Java Client wants to use. Spring Security 5.3.8 is then used to ensure it and Spring Boot are using the same
# underlying Spring libraries, which is version 5.2.12.
springBootVersion=2.3.8.RELEASE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
if (project.hasProperty("testing")) {
classpath "com.marklogic:ml-data-hub:5.4-SNAPSHOT"
} else {
classpath "gradle.plugin.com.marklogic:ml-data-hub:5.4.0"
classpath "gradle.plugin.com.marklogic:ml-data-hub:5.4.3"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ public static String getBuildVersion() {
}

String version = properties.getProperty("version");
return "${project.version}".equals(version) ? "5.4-SNAPSHOT" : version;
return "${project.version}".equals(version) ? "5.4.3" : version;
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"role-name": "data-hub-admin",
"description": "5.4-SNAPSHOT: Permits developing and operating a Data Hub application, along with clearing databases",
"description": "5.4.3: Permits developing and operating a Data Hub application, along with clearing databases",
"role": [
"data-hub-developer"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ plugins {
// Applies the Data Hub Gradle plugin, which extends ml-gradle with behavior specific to Data Hub.
// For more information on this plugin, see https://docs.marklogic.com/datahub/tools/gradle/dhf-gradle-plugin.html .
// For more information on ml-gradle, see https://github.com/marklogic-community/ml-gradle .
id 'com.marklogic.ml-data-hub' version '5.4-SNAPSHOT'
id 'com.marklogic.ml-data-hub' version '5.4.3'
}

0 comments on commit 4ba2207

Please sign in to comment.