Add testing dependencies to dgraph pom 15/8315/4
authorSkip Wonnell <kw5258@att.com>
Tue, 22 Aug 2017 18:27:43 +0000 (13:27 -0500)
committerMarcus Williams <marcus.williams@intel.com>
Wed, 23 Aug 2017 15:33:08 +0000 (15:33 +0000)
Insert missing junit, mockito, and powermock dependencies in pom.

Change-Id: I74d19f9ec49edddf6f7c3a1608ee69dd698850a1
Issue-ID: APPC-165
Signed-off-by: Skip Wonnell <kw5258@att.com>
appc-directed-graph/appc-dgraph/provider/pom.xml

index ceae6c1..4681121 100644 (file)
             <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>