Skip to content

Commit

Permalink
Add explicit dependency on junit-platform-launcher
Browse files Browse the repository at this point in the history
  • Loading branch information
adwsingh committed Feb 26, 2025
1 parent 33e064b commit b072ed5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ dependencies {
testImplementation(libs.junit.jupiter.api)
testRuntimeOnly(libs.junit.jupiter.engine)
testImplementation(libs.junit.jupiter.params)
testImplementation(libs.junit.platform.launcher)
testImplementation(libs.hamcrest)
testImplementation(libs.assertj.core)
compileOnly("com.github.spotbugs:spotbugs-annotations:${spotbugs.toolVersion.get()}")
Expand Down
7 changes: 4 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,10 @@ netty-all = {module = "io.netty:netty-all", version.ref = "netty"}

# Test dependencies
junit-bom = { module = "org.junit:junit-bom", version.ref = "junit5" }
junit-jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit5" }
junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit5" }
junit-jupiter-params = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "junit5" }
junit-jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api" }
junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine" }
junit-jupiter-params = { module = "org.junit.jupiter:junit-jupiter-params" }
junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher" }
hamcrest = { module = "org.hamcrest:hamcrest", version.ref = "hamcrest" }
assertj-core = { module = "org.assertj:assertj-core", version.ref = "assertj"}

Expand Down
3 changes: 3 additions & 0 deletions protocol-test-harness/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@


plugins {
id("smithy-java.module-conventions")
}
Expand All @@ -21,6 +23,7 @@ dependencies {
implementation(project(":codecs:json-codec"))
implementation(libs.assertj.core)

api(platform(libs.junit.bom))
api(libs.junit.jupiter.api)
api(libs.junit.jupiter.engine)
api(libs.junit.jupiter.params)
Expand Down

0 comments on commit b072ed5

Please sign in to comment.