Skip to content

Commit

Permalink
Exclude unintentional transitive junit dependency (#1542)
Browse files Browse the repository at this point in the history
* A bug in the .pom of our new dependency mjson accidentally includes junit as a runtime dependency
*  This excludes it manually so we don't package it.
  • Loading branch information
lbergelson authored Mar 16, 2021
1 parent 39b18c7 commit 9bad6fe
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 @@ -37,7 +37,9 @@ dependencies {
compile "org.apache.commons:commons-compress:1.19"
compile 'org.tukaani:xz:1.8'
compile "gov.nih.nlm.ncbi:ngs-java:2.9.0"
compile 'org.sharegov:mjson:1.4.1'
compile ('org.sharegov:mjson:1.4.1') {
exclude group: "junit"
}

testCompile "org.scala-lang:scala-library:2.12.8"
testCompile "org.scalatest:scalatest_2.12:3.0.5"
Expand Down

0 comments on commit 9bad6fe

Please sign in to comment.