diff options
author | Patrick Brady <patrick.brady@att.com> | 2020-01-15 12:33:15 -0800 |
---|---|---|
committer | Patrick Brady <patrick.brady@att.com> | 2020-01-15 12:33:19 -0800 |
commit | 2a6747ce3aefd99cacf8962b899c2bf04eb39c95 (patch) | |
tree | 0616d5ebf978a7ae8f59df2db983e7a07ea85e6f | |
parent | 207bfb1944831973a665fdb26227a0290f57120f (diff) |
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 <patrick.brady@att.com>
Issue-ID: APPC-1816
-rw-r--r-- | installation/appc/src/main/scripts/installZips.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 '{}' \; |