From 9f8067c1f8cd8312942f0d9b2bea2be7d93b87e8 Mon Sep 17 00:00:00 2001 From: Brian Freeman Date: Thu, 24 Aug 2017 12:51:40 +0000 Subject: fix dmaap-listener startup and library Change-Id: Ice802b7c415f622e161d0ade2daf933064ac8edd Signed-off-by: Brian Freeman Issue-Id: SDNC-67 (cherry picked from commit 356b29817974cf09ed15088fef172e033e940047) --- dmaap-listener/pom.xml | 5 +++++ dmaap-listener/src/main/scripts/start-dmaap-listener.sh | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/dmaap-listener/pom.xml b/dmaap-listener/pom.xml index 5c7a5abd..c4c6656a 100755 --- a/dmaap-listener/pom.xml +++ b/dmaap-listener/pom.xml @@ -56,6 +56,11 @@ jackson-databind ${fasterxml.jackson.version} + + com.fasterxml.jackson.core + jackson-annotations + ${fasterxml.jackson.version} + junit junit diff --git a/dmaap-listener/src/main/scripts/start-dmaap-listener.sh b/dmaap-listener/src/main/scripts/start-dmaap-listener.sh index 7c11f4e8..3890df26 100644 --- a/dmaap-listener/src/main/scripts/start-dmaap-listener.sh +++ b/dmaap-listener/src/main/scripts/start-dmaap-listener.sh @@ -60,7 +60,7 @@ do LISTENERCLASSPATH=$LISTENERCLASSPATH:$file done -${JAVA} ${JAVA_OPTS} -Dlog4j.configuration=file:${UEBLISTENERROOT}/lib/log4j.properties -cp ${LISTENERCLASSPATH} com.att.sdnctl.dmaapclient.DmaapListener & +${JAVA} ${JAVA_OPTS} -Dlog4j.configuration=file:${UEBLISTENERROOT}/lib/log4j.properties -cp ${LISTENERCLASSPATH} org.openecomp.sdnc.dmaapclient.DmaapListener & echo $! > $PIDFILE -- cgit 1.2.3-korg