Remove jms functionality brought in by log4j1.X dependency

This commit is contained in:
Luca Abbati 2019-06-20 18:23:40 -04:00
parent 4d1d5d1012
commit b7393df473
No known key found for this signature in database
GPG Key ID: 74DBB952D9BA17F2
1 changed files with 3 additions and 0 deletions

View File

@ -17,6 +17,9 @@ configurations {
// dependency brought in by :dd-java-agent:testing over 'log4j-over-slf4j' which would shadow
// the log4j module under test using a proxy to slf4j instead.
testCompile.exclude group: 'org.slf4j', module: 'log4j-over-slf4j'
// See: https://stackoverflow.com/a/9047963/2749853
testCompile.exclude group: 'javax.jms', module: 'jms'
}
dependencies {