Skip to content

Commit

Permalink
chore: add source sets
Browse files Browse the repository at this point in the history
  • Loading branch information
bgiori committed Jul 23, 2024
1 parent 7aabc6f commit 1167fc5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions evaluation-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,26 +41,31 @@ kotlin {
implementation("io.ktor:ktor-client-core:$ktorVersion")
}
}
val jvmMain by getting
val jvmTest by getting {
dependencies {
implementation("io.ktor:ktor-client-cio:$ktorVersion")
}
}
val macosArm64Main by getting
val macosArm64Test by getting {
dependencies {
implementation("io.ktor:ktor-client-curl:$ktorVersion")
}
}
val macosX64Main by getting
val macosX64Test by getting {
dependencies {
implementation("io.ktor:ktor-client-curl:$ktorVersion")
}
}
val linuxArm64Main by getting
val linuxArm64Test by getting {
dependencies {
implementation("io.ktor:ktor-client-curl:$ktorVersion")
}
}
val linuxX64Main by getting
val linuxX64Test by getting {
dependencies {
implementation("io.ktor:ktor-client-curl:$ktorVersion")
Expand Down

0 comments on commit 1167fc5

Please sign in to comment.