diff options
Diffstat (limited to 'misc/env/pom.xml')
-rw-r--r-- | misc/env/pom.xml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/misc/env/pom.xml b/misc/env/pom.xml index 76de25f9..d1e3ad95 100644 --- a/misc/env/pom.xml +++ b/misc/env/pom.xml @@ -174,6 +174,12 @@ <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> <configuration> + <skipTests>false</skipTests> + <includes> + <include>**/JU*.java</include> + </includes> + <excludes> + </excludes> </configuration> </plugin> @@ -288,6 +294,32 @@ <artifactId>log4j</artifactId> <scope>compile</scope> <!-- Provides scope only, in case other users prefer another Logging Implementation --> </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-all</artifactId> + <version>1.9.5</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-module-junit4</artifactId> + <version>${powermock.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-mockito</artifactId> + <version>${powermock.version}</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.10</version> + <scope>test</scope> + </dependency> </dependencies> |