Skip to content

Commit 9ef6045

Browse files
committed
Use testCompile for kotlin test to help Gradle find tests
1 parent bb53b9d commit 9ef6045

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ dependencies {
2020
compile(group = "org.http4k", name = "http4k-server-apache", version = http4kVersion)
2121
compile(group = "org.http4k", name = "http4k-format-jackson", version = http4kVersion)
2222

23-
testImplementation(kotlin("test"))
24-
testImplementation(kotlin("test-junit"))
23+
testCompile(kotlin("test"))
24+
testCompile(kotlin("test-junit"))
2525
testImplementation("io.mockk:mockk:1.9.3")
2626
testCompile(group = "org.http4k", name = "http4k-testing-hamkrest", version = http4kVersion)
2727
}

0 commit comments

Comments
 (0)