diff options
author | Sandeep Shah <sandeep.shah2@techmahindra.com> | 2019-04-27 03:05:08 -0500 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2019-05-02 20:12:20 +0000 |
commit | f660cdce6394396652af3f3517696eebf3f0cbeb (patch) | |
tree | 862866720d08e6ce88f4e5759d85a274a429704a | |
parent | 786db48092901d38ae8710c8534e7c3654e8ece4 (diff) |
Inclusion of missing OOF/PCI dependencies in ODLSLI POM's
Unfortunately, inclusion of dependencies was missed during feature
code commit before M3
Change-Id: Ifdf16f838cb4e00a29da88034f45fe86aae9b95f
Issue-ID: CCSDK-1296
Signed-off-by: SandeepLinux <sandeep.shah2@techmahindra.com>
-rw-r--r-- | odlsli/odlsli-alpine/pom.xml | 19 | ||||
-rw-r--r-- | odlsli/odlsli-ubuntu/pom.xml | 16 |
2 files changed, 32 insertions, 3 deletions
diff --git a/odlsli/odlsli-alpine/pom.xml b/odlsli/odlsli-alpine/pom.xml index 04115b7e..eaac1c9e 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>0.4.2</ccsdk.features.version> + <ccsdk.features.version>0.5.0-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> @@ -36,7 +36,7 @@ <ccsdk.odl.features>ccsdk-sli-core-all,ccsdk-sli-adaptors-all,ccsdk-sli-northbound-all,ccsdk-sli-plugins-all,ccsdk-features-all</ccsdk.odl.features> <odl.boot.features.extra>${odl.features.extra},${ccsdk.odl.features}</odl.boot.features.extra> </properties> - + <dependencies> <dependency> <groupId>${project.groupId}</groupId> @@ -264,6 +264,21 @@ <classifier>repo</classifier> <type>zip</type> </dependency> + <dependency> + <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId> + <artifactId>sdnr-northbound-features-installer</artifactId> + <version>${ccsdk.features.version}</version> + <classifier>repo</classifier> + <type>zip</type> + </dependency> + <dependency> + <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId> + <artifactId>oofpcipoc-installer</artifactId> + <version>${ccsdk.features.version}</version> + <classifier>repo</classifier> + <type>zip</type> + </dependency> + </dependencies> <build> diff --git a/odlsli/odlsli-ubuntu/pom.xml b/odlsli/odlsli-ubuntu/pom.xml index 9974f2a5..600b363d 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>0.4.2</ccsdk.features.version> + <ccsdk.features.version>0.5.0-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> @@ -263,6 +263,20 @@ <classifier>repo</classifier> <type>zip</type> </dependency> + <dependency> + <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId> + <artifactId>sdnr-northbound-features-installer</artifactId> + <version>${ccsdk.features.version}</version> + <classifier>repo</classifier> + <type>zip</type> + </dependency> + <dependency> + <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId> + <artifactId>oofpcipoc-installer</artifactId> + <version>${ccsdk.features.version}</version> + <classifier>repo</classifier> + <type>zip</type> + </dependency> </dependencies> <build> |