diff options
author | Brian Freeman <bf1936@att.com> | 2017-08-25 17:16:00 +0000 |
---|---|---|
committer | Brian Freeman <bf1936@att.com> | 2017-08-25 17:17:02 +0000 |
commit | ce4a541b00557f52860f16643aff0593178a2a91 (patch) | |
tree | 7af371fda21843f6971c35518dc117fc62018d61 /dmaap-listener | |
parent | 1027b0c07b488bb5f4542bd38501f9a99da5c2cf (diff) |
Fix to start script and annotation dependency
Change-Id: I38d4ffad440ea5866a398b8a6a7244d8bf156138
Signed-off-by: Brian Freeman <bf1936@att.com>
Issue-Id: SDNC-67
Diffstat (limited to 'dmaap-listener')
-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 ac65c16f8..dcdc5ca5a 100755 --- a/dmaap-listener/pom.xml +++ b/dmaap-listener/pom.xml @@ -57,6 +57,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 805105863..164ade332 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.onap.ccsdk.sli.northbound.dmaapclient.DmaapListener & echo $! > $PIDFILE |