From 2a6747ce3aefd99cacf8962b899c2bf04eb39c95 Mon Sep 17 00:00:00 2001 From: Patrick Brady Date: Wed, 15 Jan 2020 12:33:15 -0800 Subject: [PATCH] Change the dmaap service jar version to match appc The version of the dmaap service jar was previously hardcoded. This change makes it use the same version as the other appc artifacts. Change-Id: I920a821520c7494dc9d03a53fa4fccab991cc713 Signed-off-by: Patrick Brady Issue-ID: APPC-1816 --- installation/appc/src/main/scripts/installZips.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installation/appc/src/main/scripts/installZips.sh b/installation/appc/src/main/scripts/installZips.sh index 4b826ec..5428f16 100644 --- a/installation/appc/src/main/scripts/installZips.sh +++ b/installation/appc/src/main/scripts/installZips.sh @@ -131,7 +131,7 @@ mvn -U ${mavenOpts} org.apache.maven.plugins:maven-dependency-plugin:2.9:copy -D mv ${targetDir}/cdt-proxy-service/cdt-proxy-service-*.jar ${targetDir}/cdt-proxy-service/cdt-proxy-service.jar echo "Downloading Dmaap Service Jar from nexus" -mvn -U ${mavenOpts} org.apache.maven.plugins:maven-dependency-plugin:2.9:copy -Dartifact=org.onap.appc.services.dmaap:dmaap-event-service:1.7.0-SNAPSHOT -DoutputDirectory=${targetDir}/dmaap-event-service +mvn -U ${mavenOpts} org.apache.maven.plugins:maven-dependency-plugin:2.9:copy -Dartifact=org.onap.appc.services.dmaap:dmaap-event-service:${APPC_VERSION} -DoutputDirectory=${targetDir}/dmaap-event-service mv ${targetDir}/dmaap-event-service/dmaap-event-service-*.jar ${targetDir}/dmaap-event-service/dmaap-event-service.jar find ${targetDir} -name '*.sh' -exec chmod +x '{}' \; -- 2.16.6