diff options
-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
|