Removal of powermock injection in WAR

THere were transitive dependencies to powermock due to the import of the
EELF library. This has been excluded from the MSO common lib, and
therefore no War importing it will have the powermock anymore

Change-Id: I1d3170d52d9e76ffc002adf4f94f55c2bb3d7828
Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
diff --git a/common/pom.xml b/common/pom.xml
index 30c8689..f9ea6df 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -17,6 +17,16 @@
             <groupId>com.att.eelf</groupId>
             <artifactId>eelf-core</artifactId>
             <version>0.0.1</version>
+            <exclusions>
+            	<exclusion>
+            		<groupId>org.powermock</groupId>
+            		<artifactId>powermock-module-junit4</artifactId>
+            	</exclusion>
+            	<exclusion>
+            		<groupId>org.powermock</groupId>
+            		<artifactId>powermock-api-mockito</artifactId>
+            	</exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>ch.qos.logback</groupId>