diff options
author | Jack Lucas <jflucas@research.att.com> | 2018-08-14 13:28:53 +0000 |
---|---|---|
committer | Jack Lucas <jflucas@research.att.com> | 2018-08-14 13:29:41 +0000 |
commit | 90a448d6c9b73a76f49b5681a51c3531b978a0a4 (patch) | |
tree | 1a2be41bcfc15945b18be5991122237a19d88384 | |
parent | d269f9729a2c2c18763558174d7d3cd2d5280696 (diff) |
Fix health check script
Change-Id: I0ed005e16e1ef7402e51df28f84cc495f8f21059
Issue-ID: DCAEGEN2-707
Signed-off-by: Jack Lucas <jflucas@research.att.com>
-rw-r--r-- | pom.xml | 2 | ||||
-rwxr-xr-x | resources/health.sh | 2 | ||||
-rw-r--r-- | version.properties | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -33,7 +33,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <groupId>org.onap.dcaegen2.platform</groupId> <artifactId>servicechange-handler</artifactId> - <version>1.1.4</version> + <version>1.1.5</version> <!-- Not sure why clojure-maven-plugin says packaging should be "clojure" --> <packaging>jar</packaging> diff --git a/resources/health.sh b/resources/health.sh index b2d0b4a..00c77d5 100755 --- a/resources/health.sh +++ b/resources/health.sh @@ -1,3 +1,4 @@ +#!/bin/bash # ================================================================================ # Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved. # ================================================================================ @@ -15,7 +16,6 @@ # ============LICENSE_END========================================================= # # ECOMP is a trademark and service mark of AT&T Intellectual Property. -#!/bin/bash # Health check script for service change handler diff --git a/version.properties b/version.properties index 88990e7..dba81ff 100644 --- a/version.properties +++ b/version.properties @@ -1,6 +1,6 @@ major=1
minor=1
-patch=4
+patch=5
base_version=${major}.${minor}.${patch}
release_version=${base_version}
snapshot_version=${base_version}-SNAPSHOT
|