aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandeep Shah <sandeeplinux1068@gmail.com>2019-07-11 22:26:20 -0500
committerSandeep Shah <sandeeplinux1068@gmail.com>2019-07-11 22:57:30 -0500
commit59f80ce1dff01ec4700aeaefab956a4ee1e81d3e (patch)
tree04dc256a30aab3c876ec3e865bd04176c857db4f
parent7bbcdbb841d81217e6a341a6eeaa8c6fda8daf46 (diff)
OOFPCIPOC dependencies feature and installer POMs
SDNR OOFPCIPOC consumer is required for handling Netconf notification, and dependencies to be added to POM files for feature and installer Issue-ID: CCSDK-1478 Signed-off-by: SandeepLinux <sandeeplinux1068@gmail.com> Change-Id: I4d5cbf4aba29e05f4df818be006a250aef0ea82f
-rw-r--r--sdnr/northbound/oofpcipoc/feature/pom.xml6
-rw-r--r--sdnr/northbound/oofpcipoc/installer/pom.xml7
2 files changed, 12 insertions, 1 deletions
diff --git a/sdnr/northbound/oofpcipoc/feature/pom.xml b/sdnr/northbound/oofpcipoc/feature/pom.xml
index dab0bbd8e..aaa3c6b97 100644
--- a/sdnr/northbound/oofpcipoc/feature/pom.xml
+++ b/sdnr/northbound/oofpcipoc/feature/pom.xml
@@ -45,5 +45,11 @@
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>oofpcipoc-consumer</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
</dependencies>
</project>
diff --git a/sdnr/northbound/oofpcipoc/installer/pom.xml b/sdnr/northbound/oofpcipoc/installer/pom.xml
index 048995445..6b65484bd 100644
--- a/sdnr/northbound/oofpcipoc/installer/pom.xml
+++ b/sdnr/northbound/oofpcipoc/installer/pom.xml
@@ -38,11 +38,16 @@
</dependency>
<dependency>
- <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
+ <groupId>${project.groupId}</groupId>
<artifactId>oofpcipoc-provider</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>oofpcipoc-consumer</artifactId>
+ <version>${project.version}</version>
+ </dependency>
</dependencies>