Skip to content

Commit

Permalink
Fix Gradle build script warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
charleskorn committed May 28, 2023
1 parent 5d07183 commit 390c7f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,27 49,27 @@ kotlin {
languageSettings.optIn("kotlin.RequiresOptIn")
}

val commonMain by getting {
commonMain {
dependencies {
api("org.jetbrains.kotlinx:kotlinx-serialization-core:1.5.1")
}
}

val commonTest by getting {
commonTest {
dependencies {
implementation("io.kotest:kotest-assertions-core:5.6.2")
implementation("io.kotest:kotest-framework-api:5.6.2")
implementation("io.kotest:kotest-framework-engine:5.6.2")
}
}

val jvmMain by getting {
named("jvmMain") {
dependencies {
implementation("org.snakeyaml:snakeyaml-engine:2.6")
}
}

val jvmTest by getting {
named("jvmTest") {
dependencies {
implementation("io.kotest:kotest-runner-junit5:5.6.2")
}
Expand Down

0 comments on commit 390c7f5

Please sign in to comment.