Skip to content

Commit

Permalink
MINOR: Exclude junit 3 transitive dependency from jfreechart (apache#…
Browse files Browse the repository at this point in the history
…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 <[email protected]>
  • Loading branch information
ijuma authored Jan 19, 2021
1 parent 418aaa0 commit ef5b7b7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit ef5b7b7

Please sign in to comment.