summaryrefslogtreecommitdiffstats
path: root/misc/env
diff options
context:
space:
mode:
authorSai Gandham <sg481n@att.com>2018-04-12 22:16:21 +0000
committerSai Gandham <sg481n@att.com>2018-04-12 22:16:27 +0000
commit3a70e91752df97a7b0eb8646a7cf4e0afd48d95f (patch)
tree0eae67855c5986e2622c45b318bcf53a5bf913e3 /misc/env
parentc0e605c5b4b51f8f65e12e3a2a07041541070548 (diff)
MOdify POM files to fix sonar
Issue-ID: AAF-129 Change-Id: I450e199f94e1428a6cdeae9a1a755d9bda2754ad Signed-off-by: Sai Gandham <sg481n@att.com>
Diffstat (limited to 'misc/env')
-rw-r--r--misc/env/pom.xml32
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>