diff options
author | Brian Freeman <bf1936@att.com> | 2017-08-24 12:51:40 +0000 |
---|---|---|
committer | Brian Freeman <bf1936@att.com> | 2017-08-24 12:54:03 +0000 |
commit | 356b29817974cf09ed15088fef172e033e940047 (patch) | |
tree | 851d1431915fa549f3fcf916d7f43dc55b60d652 | |
parent | 2cc77fb3196548ea03e9f793c0889063208f24af (diff) |
fix dmaap-listener startup and library
Change-Id: Ice802b7c415f622e161d0ade2daf933064ac8edd
Signed-off-by: Brian Freeman <bf1936@att.com>
Issue-Id: SDNC-67
-rwxr-xr-x | dmaap-listener/pom.xml | 5 | ||||
-rw-r--r-- | dmaap-listener/src/main/scripts/start-dmaap-listener.sh | 2 |
2 files changed, 6 insertions, 1 deletions
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 @@ <artifactId>jackson-databind</artifactId> <version>${fasterxml.jackson.version}</version> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-annotations</artifactId> + <version>${fasterxml.jackson.version}</version> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> 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 |