Update the dependency from snapshot 23/21923/1
authorVenkata Harish K Kajur <vk250x@att.com>
Thu, 2 Nov 2017 17:27:12 +0000 (13:27 -0400)
committerVenkata Harish K Kajur <vk250x@att.com>
Thu, 2 Nov 2017 17:27:16 +0000 (13:27 -0400)
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 <vk250x@att.com>
aai-traversal/pom.xml
aai-traversal/src/main/resources/docker/docker-entrypoint.sh
pom.xml

index 724b2db..d79e1e7 100644 (file)
@@ -19,8 +19,6 @@
         <dockerLocation>${basedir}/target/swm/package/nix/dist_files/</dockerLocation>
         <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format>
         <docker.image.version>1.0.0</docker.image.version>
-        <aai-core.version>1.1.0-SNAPSHOT</aai-core.version>
-        <aai-schema.version>1.1.0-SNAPSHOT</aai-schema.version>
         <hbase.version>1.0.2</hbase.version>
         <sonar.language>java</sonar.language>
         <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
         <dependency>
             <groupId>org.onap.aai.aai-common</groupId>
             <artifactId>aai-schema</artifactId>
-            <version>${aai-schema.version}</version>
+            <version>${project.version}</version>
         </dependency>
         <dependency>
             <groupId>org.onap.aai.aai-common</groupId>
             <artifactId>aai-core</artifactId>
-            <version>${aai-core.version}</version>
+            <version>${project.version}</version>
         </dependency>
         <!-- Scamper related dependencies -->
         <dependency>
                             <artifactItem>
                                 <groupId>org.onap.aai.aai-common</groupId>
                                 <artifactId>aai-schema</artifactId>
-                                <version>${aai-schema.version}</version>
+                                <version>${project.version}</version>
                                 <outputDirectory>bundleconfig-local/etc</outputDirectory>
                                 <includes>oxm/*.xml</includes>
                             </artifactItem>
index 64b7277..d1231f2 100644 (file)
@@ -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
diff --git a/pom.xml b/pom.xml
index 55559c1..41799e6 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -26,7 +26,6 @@
         <module.ajsc.namespace.name>ActiveAndAvailableInventory-Traversal</module.ajsc.namespace.name>
         <module.ajsc.namespace.version>v1</module.ajsc.namespace.version>
         <ajscRuntimeVersion>2.1.0</ajscRuntimeVersion>
-        <aai-schema.version>1.1.0-SNAPSHOT</aai-schema.version>
         <aai.project.version>1.1.0</aai.project.version>
         <aai.docker.version>1.1</aai.docker.version>
 
@@ -59,7 +58,6 @@
         <cxf.version>3.0.4</cxf.version>
         <swmpkgversion>0.0.1</swmpkgversion>
         <snapshot.file>int1-data.graphson</snapshot.file>
-        <aai-core.version>1.1.0-SNAPSHOT</aai-core.version>
     </properties>
 
     <repositories>
                                         <additionalClasspathElement>${runAjscHome}/extJars/logback-core-1.1.7.jar
                                         </additionalClasspathElement>
                                         <additionalClasspathElement>
-                                            ${runAjscHome}/extJars/aai-core-${aai-core.version}.jar
+                                            ${runAjscHome}/extJars/aai-core-${project.version}.jar
                                         </additionalClasspathElement>
                                     </additionalClasspathElements>
 
                                         </systemProperty>
                                         <systemProperty>
                                             <key>aai-core.version</key>
-                                            <value>${aai-core.version}</value>
+                                            <value>${project.version}</value>
                                         </systemProperty>
                                     </systemProperties>