Skip to content

Commit

Permalink
allow all junit4 dependencies up to 5.0 (exclusive)
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Schmid <[email protected]>
  • Loading branch information
aaschmid committed Nov 6, 2020
1 parent a6b422e commit a43cf3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ subprojects {

// JUnit4
if (groupId.textContent == "junit" && artifactId.textContent == "junit") {
dep.getElementsByTagName("version").onlyElement().textContent = "[4.10,4.13]"
dep.getElementsByTagName("version").onlyElement().textContent = "[4.10,5.0)"
dep.getElementsByTagName("scope").onlyElement().textContent = "provided"
}

Expand Down

0 comments on commit a43cf3f

Please sign in to comment.