Browse Source

MINOR: Exclude junit 3 transitive dependency from jfreechart (#9928)

This was causing IntelliJ to choose the Vintage runner when running `core` tests
which would then fail during the discovery phase.

Verified that `core` tests work in IntelliJ again after this change.

Reviewers: Chia-Ping Tsai <chia7712@gmail.com>
pull/9905/head
Ismael Juma 4 years ago committed by GitHub
parent
commit
ef5b7b701f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      build.gradle

4
build.gradle

@ -794,7 +794,9 @@ project(':core') { @@ -794,7 +794,9 @@ project(':core') {
testCompile libs.apachedsJdbmPartition
testCompile libs.junitJupiter
testCompile libs.slf4jlog4j
testCompile libs.jfreechart
testCompile(libs.jfreechart) {
exclude group: 'junit', module: 'junit'
}
}
if (userEnableTestCoverage) {

Loading…
Cancel
Save