diff options
author | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2017-02-10 06:34:24 -0800 |
---|---|---|
committer | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2017-02-10 06:40:17 -0800 |
commit | 1d4f2ea10bf49480d8a59edf06e04825fb947f43 (patch) | |
tree | 7de06618461b185b9e700c60eabe15ef45f4649a | |
parent | 4743772924d0262b6d740ae5c5f0c38d294efd29 (diff) |
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>
-rw-r--r-- | common/pom.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/common/pom.xml b/common/pom.xml index 30c8689f7f..f9ea6df44b 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> |