diff options
author | Skip Wonnell <kw5258@att.com> | 2017-08-22 13:27:43 -0500 |
---|---|---|
committer | Marcus Williams <marcus.williams@intel.com> | 2017-08-23 15:33:08 +0000 |
commit | dec71edf8dfe99bbd6239df4b71a9d0830c1710a (patch) | |
tree | 024d507eaada1085583a913c2f8591a68763cba8 /appc-directed-graph/appc-dgraph/provider | |
parent | 0ef2295e9ed460ca792fa5f38da29d97c96e8e37 (diff) |
Add testing dependencies to dgraph pom
Insert missing junit, mockito, and powermock dependencies in pom.
Change-Id: I74d19f9ec49edddf6f7c3a1608ee69dd698850a1
Issue-ID: APPC-165
Signed-off-by: Skip Wonnell <kw5258@att.com>
Diffstat (limited to 'appc-directed-graph/appc-dgraph/provider')
-rw-r--r-- | appc-directed-graph/appc-dgraph/provider/pom.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/appc-directed-graph/appc-dgraph/provider/pom.xml b/appc-directed-graph/appc-dgraph/provider/pom.xml index ceae6c122..468112187 100644 --- a/appc-directed-graph/appc-dgraph/provider/pom.xml +++ b/appc-directed-graph/appc-dgraph/provider/pom.xml @@ -60,6 +60,22 @@ <scope>test</scope> </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-mockito</artifactId> + <scope>test</scope> + </dependency> + </dependencies> <build> |