summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimoney, Dan (dt5972) <dtimoney@att.com>2019-03-28 10:30:45 -0400
committerTimoney, Dan (dt5972) <dtimoney@att.com>2019-03-28 10:30:45 -0400
commitbdd90119ab4628c2fd0d8052614a9b0d686fec38 (patch)
tree0aae7880b1a82da89b53aaf7f37661426818a9d9
parentc4acdc6d2f3e4c0c7fc36433a1ce5033b9daf32d (diff)
Fix container startup issue
Fixed odlsli startup issue. Container was incorrectly using released version of ccsdk/features instead of snapshot. This would be fine, except that staging repo in nexus is not getting updated properly, so the OLDEST version of staged artifact is used instead of newest. Change-Id: I02f72bcd010dc6c897f9a0e978ef0871fc463042 Issue-ID: CCSDK-1185 Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
-rw-r--r--odlsli/odlsli-alpine/pom.xml9
-rw-r--r--odlsli/odlsli-ubuntu/pom.xml9
2 files changed, 16 insertions, 2 deletions
diff --git a/odlsli/odlsli-alpine/pom.xml b/odlsli/odlsli-alpine/pom.xml
index edb85c65..8d4fbd6b 100644
--- a/odlsli/odlsli-alpine/pom.xml
+++ b/odlsli/odlsli-alpine/pom.xml
@@ -25,7 +25,7 @@
<image.name>onap/ccsdk-odlsli-alpine-image</image.name>
<ccsdk.project.version>${project.version}</ccsdk.project.version>
<ccsdk.build.timestamp>${maven.build.timestamp}</ccsdk.build.timestamp>
- <ccsdk.features.version>${project.version}</ccsdk.features.version>
+ <ccsdk.features.version>0.4.2-SNAPSHOT</ccsdk.features.version>
<docker.buildArg.https_proxy>${https_proxy}</docker.buildArg.https_proxy>
<maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
<opendaylight.root>opt/opendaylight</opendaylight.root>
@@ -128,6 +128,13 @@
<type>zip</type>
</dependency>
<dependency>
+ <groupId>org.onap.ccsdk.sli.adaptors.messagerouter</groupId>
+ <artifactId>publisher.installer</artifactId>
+ <version>${ccsdk.sli.adaptors.version}</version>
+ <classifier>repo</classifier>
+ <type>zip</type>
+ </dependency>
+ <dependency>
<groupId>org.onap.ccsdk.sli.adaptors</groupId>
<artifactId>netbox-client-installer</artifactId>
<version>${ccsdk.sli.adaptors.version}</version>
diff --git a/odlsli/odlsli-ubuntu/pom.xml b/odlsli/odlsli-ubuntu/pom.xml
index 6cc71175..6cae49ce 100644
--- a/odlsli/odlsli-ubuntu/pom.xml
+++ b/odlsli/odlsli-ubuntu/pom.xml
@@ -25,7 +25,7 @@
<image.name>onap/ccsdk-odlsli-image</image.name>
<ccsdk.project.version>${project.version}</ccsdk.project.version>
<ccsdk.build.timestamp>${maven.build.timestamp}</ccsdk.build.timestamp>
- <ccsdk.features.version>${project.version}</ccsdk.features.version>
+ <ccsdk.features.version>0.4.2-SNAPSHOT</ccsdk.features.version>
<docker.buildArg.https_proxy>${https_proxy}</docker.buildArg.https_proxy>
<maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
<opendaylight.root>opt/opendaylight</opendaylight.root>
@@ -124,6 +124,13 @@
<type>zip</type>
</dependency>
<dependency>
+ <groupId>org.onap.ccsdk.sli.adaptors.messagerouter</groupId>
+ <artifactId>publisher.installer</artifactId>
+ <version>${ccsdk.sli.adaptors.version}</version>
+ <classifier>repo</classifier>
+ <type>zip</type>
+ </dependency>
+ <dependency>
<groupId>org.onap.ccsdk.sli.adaptors</groupId>
<artifactId>netbox-client-installer</artifactId>
<version>${ccsdk.sli.adaptors.version}</version>