diff options
author | Jim Hahn <jrh3@att.com> | 2019-02-26 14:09:35 -0500 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2019-02-27 10:41:41 -0500 |
commit | b020843d050ece966c4652d00ff7dead897be917 (patch) | |
tree | 7e35ca8956c1d80ed25764952d1093631e85b581 /main/pom.xml | |
parent | 92eabbc64c1ea6f6bfe6df979ccc487e99e806be (diff) |
Add code to publish to PDP
Added code to take an arbitrary object and send it to PDPs using a
topic sink. Does not include the code or properties needed to
configure the topic.
Fixed method name - test case does not cover what the method name
implied.
Fixed some comments.
Add test to verify that the PdpClient works with a real TopicSink.
Moved coder classes to policy/common.
Change-Id: I4dec746b07d384c5d9d1449ca91fa39a4f680260
Issue-ID: POLICY-1444
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'main/pom.xml')
-rw-r--r-- | main/pom.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/main/pom.xml b/main/pom.xml index 19c54dbb..1a1f537c 100644 --- a/main/pom.xml +++ b/main/pom.xml @@ -68,6 +68,22 @@ <version>1.18.4</version> <scope>provided</scope> </dependency> + <dependency> + <groupId>org.onap.policy.common</groupId> + <artifactId>utils-test</artifactId> + <version>${policy.common.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-mockito</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.assertj</groupId> + <artifactId>assertj-core</artifactId> + <scope>test</scope> + </dependency> </dependencies> <build> |