Skip to content

Commit

Permalink
fix(build): remove kotlin-test-junit library
Browse files Browse the repository at this point in the history
  • Loading branch information
msfjarvis committed May 22, 2024
1 parent 984020b commit b3b77fb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
9 changes: 1 addition & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,7 @@ kotlin {
androidNativeArm64()
}

sourceSets {
getByName("commonTest") {
dependencies {
implementation(libs.kotlin.test.core)
implementation(libs.kotlin.test.junit)
}
}
}
sourceSets { getByName("commonTest") { dependencies { implementation(libs.kotlin.test.core) } } }

jvmToolchain { languageVersion.set(JavaLanguageVersion.of(11)) }
}
Expand Down
1 change: 0 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ dokka = "1.9.20"

[libraries]
kotlin-test-core = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
kotlin-test-junit = { module = "org.jetbrains.kotlin:kotlin-test-junit", version.ref = "kotlin" }
kotlinx-benchmark-runtime = { module = "org.jetbrains.kotlinx:kotlinx-benchmark-runtime", version.ref = "benchmark" }

[plugins]
Expand Down

0 comments on commit b3b77fb

Please sign in to comment.