Skip to content

Commit 085705f

Browse files
committed
fix
1 parent c97d3f9 commit 085705f

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ sourceSets {
1818
configurations {
1919
// Ensure jmhTest picks up the same dependencies as testImplementation / jmh
2020
jmhTestImplementation.extendsFrom testImplementation
21+
jmhTestRuntimeOnly.extendsFrom testRuntimeOnly
2122
jmhTestRuntimeOnly.extendsFrom jmh
2223
}
2324

@@ -45,6 +46,7 @@ dependencies {
4546
testImplementation libs.assertj
4647
testImplementation(platform(libs.junit.bom))
4748
testImplementation libs.junit.jupiter
49+
testRuntimeOnly libs.junit.jupiter.engine
4850
testRuntimeOnly libs.junit.platform.launcher
4951

5052
jmh libs.jackson.dataformat.csv

fast-double-parser/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ dependencies {
1313
testImplementation libs.assertj
1414
testImplementation(platform(libs.junit.bom))
1515
testImplementation libs.junit.jupiter
16+
testRuntimeOnly libs.junit.jupiter.engine
17+
testRuntimeOnly libs.junit.platform.launcher
1618
}
1719

1820
apply plugin: 'io.deephaven.csv.java-publishing-conventions'

gradle/libs.versions.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jackson-dataformat-csv = { module = "com.fasterxml.jackson.dataformat:jackson-da
2727
jetbrains-annotations = { module = "org.jetbrains:annotations", version.ref = "jetbrains" }
2828
junit-bom = { module = "org.junit:junit-bom", version.ref = "junit" }
2929
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter" }
30+
junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine" }
3031
junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher" }
3132
opencsv = { module = "com.opencsv:opencsv", version.ref = "opencsv" }
3233
simpleflatemapper-csv = { module = "org.simpleflatmapper:sfm-csv", version.ref = "simpleflatmapper" }

0 commit comments

Comments
 (0)