Skip to content

Commit

Permalink
Remove JUnit 4 dependency
Browse files Browse the repository at this point in the history
All tests and test infrastructure have been migrated or ported to JUnit
5.  Nothing remains that uses JUnit 4.
  • Loading branch information
liblit committed Jul 31, 2023
1 parent 9c4529e commit dee8a7e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,9 @@ dependencies {
"javadocSource"(sourceSets.main.get().allJava)

testFixturesImplementation(platform(findLibrary("junit-bom")))
testFixturesImplementation(findLibrary("junit"))
testFixturesImplementation(findLibrary("junit-jupiter-api"))

testImplementation(platform(findLibrary("junit-bom")))
testImplementation(findLibrary("junit"))
testImplementation(findLibrary("junit-jupiter-api"))
testRuntimeOnly(findLibrary("junit-jupiter-engine"))
testRuntimeOnly(findLibrary("junit-vintage-engine"))
Expand Down
1 change: 0 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ javax-annotation-api = { module = "javax.annotation:javax.annotation-api", versi
jericho-html = "net.htmlparser.jericho:jericho-html:3.2"
json = "org.json:json:20230618"
jspecify = "org.jspecify:jspecify:0.3.0"
junit = "junit:junit:4.13.2"
junit-bom = "org.junit:junit-bom:5.9.3"
junit-jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api" }
junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine" }
Expand Down

0 comments on commit dee8a7e

Please sign in to comment.