diff options
author | efiacor <fiachra.corcoran@est.tech> | 2020-04-16 14:59:07 +0100 |
---|---|---|
committer | efiacor <fiachra.corcoran@est.tech> | 2020-04-16 15:03:50 +0100 |
commit | 5906de2465975e42e4983abe411f30fa16050fdf (patch) | |
tree | 81bf98d48c6e09f9d545f993bcd9416c510ea109 /datarouter-subscriber/pom.xml | |
parent | 8552e04175c7091d0d748e0c0f4b14a0d9321b40 (diff) |
Fix sonar issues and reporting
Signed-off-by: efiacor <fiachra.corcoran@est.tech>
Change-Id: I29aa54e62d2dfaa6eddb16eb67c325254dfc0e06
Issue-ID: DMAAP-1426
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> |