From f372b2731a93e705026a426f063a2bcb8a4a2f75 Mon Sep 17 00:00:00 2001 From: Venkata Harish K Kajur Date: Thu, 2 Nov 2017 13:27:12 -0400 Subject: Update the dependency from snapshot to using the release version and remove the dependency in the docker file that is tied to the 1.1.0 since we are upgrading it will not always be the same and always depend on the project version as it will be updatable from the versions:set command Issue-ID: AAI-448 Change-Id: Id80162d227a133a51c36b986ac8a8e6952eac2f7 Signed-off-by: Venkata Harish K Kajur --- aai-traversal/pom.xml | 8 +++----- aai-traversal/src/main/resources/docker/docker-entrypoint.sh | 4 +++- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'aai-traversal') diff --git a/aai-traversal/pom.xml b/aai-traversal/pom.xml index 724b2db..d79e1e7 100644 --- a/aai-traversal/pom.xml +++ b/aai-traversal/pom.xml @@ -19,8 +19,6 @@ ${basedir}/target/swm/package/nix/dist_files/ yyyyMMdd'T'HHmmss 1.0.0 - 1.1.0-SNAPSHOT - 1.1.0-SNAPSHOT 1.0.2 java jacoco @@ -33,12 +31,12 @@ org.onap.aai.aai-common aai-schema - ${aai-schema.version} + ${project.version} org.onap.aai.aai-common aai-core - ${aai-core.version} + ${project.version} @@ -458,7 +456,7 @@ org.onap.aai.aai-common aai-schema - ${aai-schema.version} + ${project.version} bundleconfig-local/etc oxm/*.xml diff --git a/aai-traversal/src/main/resources/docker/docker-entrypoint.sh b/aai-traversal/src/main/resources/docker/docker-entrypoint.sh index 64b7277..d1231f2 100644 --- a/aai-traversal/src/main/resources/docker/docker-entrypoint.sh +++ b/aai-traversal/src/main/resources/docker/docker-entrypoint.sh @@ -51,6 +51,8 @@ gosu aaiadmin ./init-chef.sh || { httpPort=8086; httpsPort=8446; +AAI_CORE_JAR=$(ls ${APP_HOME}/extJars/aai-core*.jar); + cd ${APP_HOME}; # If the variable DISABLE_UPDATE_QUERY is empty @@ -84,7 +86,7 @@ CP="$CP":${APP_HOME}/etc; CP="$CP":${APP_HOME}/lib/*; CP="$CP":${APP_HOME}/extJars/logback-access-1.1.7.jar; CP="$CP":${APP_HOME}/extJars/logback-core-1.1.7.jar; -CP="$CP":${APP_HOME}/extJars/aai-core-${AAI_CORE_VERSION}.jar; +CP="$CP":${AAI_CORE_JAR}; # You can add additional jvm options by adding environment variable JVM_PRE_OPTS # If you need to add more jvm options at the end then you can use JVM_POST_OPTS -- cgit 1.2.3-korg