Skip to content

Commit

Permalink
[Java] Import JUnit BOM.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyazelenko committed Jul 5, 2024
1 parent 9eb6e9f commit decb0ea
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,12 @@ subprojects {
dependencies {
testImplementation "org.hamcrest:hamcrest:${hamcrestVersion}"
testImplementation "org.mockito:mockito-core:${mockitoVersion}"
testImplementation "org.junit.jupiter:junit-jupiter:${junitVersion}"
testImplementation platform("org.junit:junit-bom:${junitVersion}")

testImplementation "org.junit.jupiter:junit-jupiter"
testImplementation "junit:junit:4.13.2" // FIXME: Remove after migration to JUnit 5 is complete
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junitVersion}"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine"
}

checkstyle.toolVersion = "${checkstyleVersion}"
Expand Down

0 comments on commit decb0ea

Please sign in to comment.