aboutsummaryrefslogtreecommitdiffstats
path: root/reception/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 /reception/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 'reception/pom.xml')
-rw-r--r--reception/pom.xml12
1 files changed, 11 insertions, 1 deletions
diff --git a/reception/pom.xml b/reception/pom.xml
index 7d8040d2..b0b07012 100644
--- a/reception/pom.xml
+++ b/reception/pom.xml
@@ -30,7 +30,7 @@
<name>${project.artifactId}</name>
<description>The module of Policy Distribution that handles reception of policies from other systems.</description>
-
+
<dependencies>
<dependency>
<groupId>org.onap.policy.distribution</groupId>
@@ -42,5 +42,15 @@
<artifactId>forwarding</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.onap.policy.common</groupId>
+ <artifactId>common-parameters</artifactId>
+ <version>1.3.0-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.onap.policy.common</groupId>
+ <artifactId>ONAP-Logging</artifactId>
+ <version>1.3.0-SNAPSHOT</version>
+ </dependency>
</dependencies>
</project>