summaryrefslogtreecommitdiffstats
path: root/forwarding/pom.xml
diff options
context:
space:
mode:
authorramverma <ram.krishna.verma@ericsson.com>2018-08-13 17:19:09 +0100
committerramverma <ram.krishna.verma@ericsson.com>2018-08-15 16:20:15 +0100
commit046b5040ce97e5faf59f3f302331bd9da6e80d02 (patch)
tree3c06aaef38565040e7cc8463a8d3b7b1a81bf4c6 /forwarding/pom.xml
parent635cde469ace4c7d60ba87bc0f9e4b26db59a1d1 (diff)
Adding code for bootstrapping policy distribution
* Code changes for initializing handlers & related plugins from configuration parameter JSON file. * Using common parameter service for refering parameters at multiple places. * Moved related parameters classes from "main" to "reception" to avoid maven cyclic dependency errors. * Added test cases for new code chnages. The test coverage is around 95%. * Changed logging from slf4j to common-logging. Change-Id: Ifb77cfaa6e6472d43295a7c41a49ddd657c0e2c2 Issue-ID: POLICY-1035 Signed-off-by: ramverma <ram.krishna.verma@ericsson.com>
Diffstat (limited to 'forwarding/pom.xml')
-rw-r--r--forwarding/pom.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/forwarding/pom.xml b/forwarding/pom.xml
index d2bcc29e..6a7b123a 100644
--- a/forwarding/pom.xml
+++ b/forwarding/pom.xml
@@ -30,12 +30,17 @@
<name>${project.artifactId}</name>
<description>The module of Policy Distribution that forwards policies to other components.</description>
-
+
<dependencies>
<dependency>
<groupId>org.onap.policy.distribution</groupId>
<artifactId>distribution-model</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.onap.policy.common</groupId>
+ <artifactId>common-parameters</artifactId>
+ <version>1.3.0-SNAPSHOT</version>
+ </dependency>
</dependencies>
</project>