diff options
author | bobbymander <bobby.mander@att.com> | 2018-03-27 13:54:17 -0400 |
---|---|---|
committer | bobbymander <bobby.mander@att.com> | 2018-03-27 14:16:09 -0400 |
commit | c8cf3270ff412fc7fc138f0e53b1361c3b21fcbf (patch) | |
tree | bb12303ff992d3b51e571385045c28268e3fc572 /PolicyEngineAPI/pom.xml | |
parent | 0a91f57af987030eb63bc06a9c4fcafc024387ca (diff) |
JUnit additions and powermock pom fixes
Issue-ID: POLICY-602
Change-Id: I2484b47cc52a07413de69c1022a056fd0cf2d7d7
Signed-off-by: bobbymander <bobby.mander@att.com>
Diffstat (limited to 'PolicyEngineAPI/pom.xml')
-rw-r--r-- | PolicyEngineAPI/pom.xml | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/PolicyEngineAPI/pom.xml b/PolicyEngineAPI/pom.xml index be3700eba..6ffef7594 100644 --- a/PolicyEngineAPI/pom.xml +++ b/PolicyEngineAPI/pom.xml @@ -31,6 +31,26 @@ <artifactId>PolicyEngineAPI</artifactId> <dependencies> + <!-- https://mvnrepository.com/artifact/org.powermock/powermock-api-mockito --> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-mockito</artifactId> + <version>1.7.3</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-module-junit4</artifactId> + <version>1.7.3</version> + <scope>test</scope> + </dependency> + <!-- https://mvnrepository.com/artifact/org.mockito/mockito-all --> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-all</artifactId> + <version>1.10.19</version> + <scope>test</scope> + </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> @@ -119,12 +139,6 @@ </exclusion> </exclusions> </dependency> - <!-- https://mvnrepository.com/artifact/org.mockito/mockito-all --> - <dependency> - <groupId>org.mockito</groupId> - <artifactId>mockito-all</artifactId> - <version>1.10.19</version> - </dependency> </dependencies> <build> <plugins> |