diff options
Diffstat (limited to 'engine-d/pom.xml')
-rw-r--r-- | engine-d/pom.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/engine-d/pom.xml b/engine-d/pom.xml index bb055bc..727f5dc 100644 --- a/engine-d/pom.xml +++ b/engine-d/pom.xml @@ -81,6 +81,16 @@ <dependency> <groupId>io.dropwizard</groupId> <artifactId>dropwizard-core</artifactId> + <exclusions> + <exclusion> + <groupId>ch.qos.logback</groupId> + <artifactId>logback</artifactId> + </exclusion> + <exclusion> + <artifactId>log4j-over-slf4j</artifactId> + <groupId>org.slf4j</groupId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.projectlombok</groupId> @@ -120,6 +130,12 @@ <scope>provided</scope> </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-easymock</artifactId> + <version>1.4.10</version> + <scope>test</scope> + </dependency> </dependencies> <build> |