Fix run command to include full path to script 43/92943/2
authorMichael Hwang <mhwang@research.att.com>
Wed, 7 Aug 2019 18:44:23 +0000 (14:44 -0400)
committerMichael Hwang <mhwang@research.att.com>
Wed, 7 Aug 2019 19:18:39 +0000 (15:18 -0400)
Change-Id: I1bd509fcc0950735ef1dba0291678aa0f57d3bc6
Issue-ID: DCAEGEN2-1718
Signed-off-by: Michael Hwang <mhwang@research.att.com>
ChangeLog.md
pom.xml
project.clj
version.properties

index 80e80cf..4b54c29 100644 (file)
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
 The format is based on [Keep a Changelog](http://keepachangelog.com/) 
 and this project adheres to [Semantic Versioning](http://semver.org/).
 
+## [1.3.2]
+
+* DCAEGEN2-1718
+
 ## [1.3.0]
 
 * Add non-root user in Docker image so that the inventory service can be run in non-privileged mode for security reasons DCAEGEN2-1555
diff --git a/pom.xml b/pom.xml
index 7583638..ad73931 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,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.3.1-SNAPSHOT</version>
+    <version>1.3.2-SNAPSHOT</version>
     <!-- Not sure why clojure-maven-plugin says packaging should be "clojure" -->
     <packaging>jar</packaging>
 
@@ -232,7 +232,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property.
                     </runs>
                     <!-- NOTE: Couldn't figure out how to package the jar to be named: ${project.build.finalName}. This might be
                             because of the clojure maven plugin -->
-                    <cmd>["sch.sh"]</cmd>
+                    <cmd>["/opt/sch.sh"]</cmd>
                     <!-- copy the service's jar file from target into the root directory of the image -->
                     <resources>
                         <resource>
index d1b95a8..2432aec 100644 (file)
@@ -21,7 +21,7 @@
 ; Using lein for REPL and testing because couldn't get Maven clojure plugin to work
 ; for these functional areas.
 
-(defproject service-change-handler "1.3.0"
+(defproject service-change-handler "1.3.2"
   :description "Service change handler"
   :dependencies [[org.clojure/clojure "1.8.0"]
                  [cheshire/cheshire "5.8.0"]
index fee4928..ef20baa 100644 (file)
@@ -1,6 +1,6 @@
 major=1
 minor=3
-patch=1
+patch=2
 base_version=${major}.${minor}.${patch}
 release_version=${base_version}
 snapshot_version=${base_version}-SNAPSHOT