Skip to content

Commit

Permalink
DEVO-421: Updating the version to 5.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
SameeraPriyathamTadikonda committed Oct 22, 2021
1 parent c716ab9 commit 3ad12ac
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 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.5-SNAPSHOT"
classpath "com.marklogic:ml-data-hub:5.5.5"
} else {
classpath "com.marklogic:ml-data-hub:5.5.0"
}
Expand All @@ -27,7 +27,7 @@ repositories {

dependencies {
if (project.hasProperty("testing")) {
compile "com.marklogic:marklogic-data-hub:5.5-SNAPSHOT"
compile "com.marklogic:marklogic-data-hub:5.5.5"
} else {
compile "com.marklogic:marklogic-data-hub:5.5.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.5-SNAPSHOT"
classpath "com.marklogic:ml-data-hub:5.5.5"
} else {
classpath "com.marklogic:ml-data-hub:5.5.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.5-SNAPSHOT"
classpath "com.marklogic:ml-data-hub:5.5.5"
} else {
classpath "com.marklogic:ml-data-hub:5.5.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.5-SNAPSHOT"
classpath "com.marklogic:ml-data-hub:5.5.5"
} else {
classpath "com.marklogic:ml-data-hub:5.5.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.5-SNAPSHOT"
classpath "com.marklogic:ml-data-hub:5.5.5"
} else {
classpath "com.marklogic:ml-data-hub:5.5.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.5-SNAPSHOT"
classpath "com.marklogic:ml-data-hub:5.5.5"
} else {
classpath "com.marklogic:ml-data-hub:5.5.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.5-SNAPSHOT"
classpath "com.marklogic:ml-data-hub:5.5.5"
}
}

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.5-SNAPSHOT
version=5.5.5
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
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}
dependencies {
if (project.hasProperty("testing")) {
classpath "com.marklogic:ml-data-hub:5.5-SNAPSHOT"
classpath "com.marklogic:ml-data-hub:5.5.5"
} else {
classpath "com.marklogic:ml-data-hub:5.5.0"
}
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.5-SNAPSHOT" : version;
return "${project.version}".equals(version) ? "5.5.5" : version;
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"role-name": "data-hub-admin",
"description": "5.5-SNAPSHOT: Permits actions pertaining to administering a Data Hub application",
"description": "5.5.5: Permits actions pertaining to administering a Data Hub application",
"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.5-SNAPSHOT'
id 'com.marklogic.ml-data-hub' version '5.5.5'
}

0 comments on commit 3ad12ac

Please sign in to comment.