diff options
author | Michal Kabaj <michal.kabaj@nokia.com> | 2018-02-27 12:25:52 +0100 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2018-02-28 23:08:49 +0000 |
commit | a91f0727cf7d51b0512d0790c18f7ddce5c5a248 (patch) | |
tree | e9716a74adda68e59028191c68f28efd66d54e6f | |
parent | f5efd33ea7f230c52135b55ecd4ac254ea7de692 (diff) |
Add missing mockito-core dependency
TestAppcDmaapListenerActivator in appc-event-listener-bundle
has compilationissues in development environment due to missing
mockito-core test dependency.
Change-Id: I1e46bd4866b5c02b06eb71fef9aba08e2b7f1012
Issue-ID: APPC-678
Signed-off-by: Michal Kabaj <michal.kabaj@nokia.com>
-rw-r--r-- | appc-event-listener/appc-event-listener-bundle/pom.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/appc-event-listener/appc-event-listener-bundle/pom.xml b/appc-event-listener/appc-event-listener-bundle/pom.xml index f6a472622..0154552e0 100644 --- a/appc-event-listener/appc-event-listener-bundle/pom.xml +++ b/appc-event-listener/appc-event-listener-bundle/pom.xml @@ -115,6 +115,10 @@ <artifactId>junit</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + </dependency> </dependencies> |