diff options
Diffstat (limited to 'datarouter-subscriber/pom.xml')
-rwxr-xr-x | datarouter-subscriber/pom.xml | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/datarouter-subscriber/pom.xml b/datarouter-subscriber/pom.xml index 9390050f..2d97b175 100755 --- a/datarouter-subscriber/pom.xml +++ b/datarouter-subscriber/pom.xml @@ -45,6 +45,14 @@ <artifactId>commons-codec</artifactId> </dependency> <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-classic</artifactId> + </dependency> + <dependency> + <groupId>ch.qos.logback</groupId> + <artifactId>logback-core</artifactId> + </dependency> + <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> @@ -141,10 +149,14 @@ <artifactId>commons-io</artifactId> </dependency> <dependency> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> - <version>1.2.17</version> - <scope>compile</scope> + <groupId>com.att.eelf</groupId> + <artifactId>eelf-core</artifactId> + <exclusions> + <exclusion> + <artifactId>powermock-api-mockito</artifactId> + <groupId>org.powermock</groupId> + </exclusion> + </exclusions> </dependency> </dependencies> <profiles> @@ -209,6 +221,7 @@ <filtering>true</filtering> <includes> <include>**/*.properties</include> + <include>**/logback.xml</include> </includes> </resource> </resources> |