Skip to content

Commit

Permalink
fix: Update dependencies in build.gradle.kts files
Browse files Browse the repository at this point in the history
Updating dependencies in build.gradle.kts files to use api instead of implementation for kotlinx.coroutines.core.

This change ensures that the dependencies are correctly configured for the project.
  • Loading branch information
hanrw committed Apr 21, 2024
1 parent 44ec7ab commit 149d4cc
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 10 deletions.
3 changes: 0 additions & 3 deletions anthropic-client/anthropic-client-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ kotlin {
sourceSets {
commonMain.dependencies {
// put your Multiplatform dependencies here
implementation(libs.kotlinx.coroutines.core)
api(libs.kotlinx.serialization.json)
api(libs.bundles.ktor.client)
api(projects.common)
}

Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ kotlin {
sourceSets {
commonMain.dependencies {
// put your Multiplatform dependencies here
implementation(libs.kotlinx.coroutines.core)
api(libs.kotlinx.coroutines.core)
api(libs.kotlinx.serialization.json)
api(libs.bundles.ktor.client)
// di
Expand Down
3 changes: 0 additions & 3 deletions ollama-client/ollama-client-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ kotlin {
sourceSets {
commonMain.dependencies {
// put your Multiplatform dependencies here
implementation(libs.kotlinx.coroutines.core)
api(libs.kotlinx.serialization.json)
api(libs.bundles.ktor.client)
api(projects.common)
}

Expand Down
3 changes: 0 additions & 3 deletions openai-client/openai-client-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ kotlin {
sourceSets {
commonMain.dependencies {
// put your Multiplatform dependencies here
implementation(libs.kotlinx.coroutines.core)
api(libs.kotlinx.serialization.json)
api(libs.bundles.ktor.client)
api(projects.common)
}

Expand Down

0 comments on commit 149d4cc

Please sign in to comment.