Skip to content

Commit

Permalink
Mark Arrow as API dependency (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
janseeger authored Sep 8, 2023
1 parent b8e4b3b commit ba4a2df
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
5 changes: 3 additions & 2 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,16 @@ plugins {
dependencies {
listOf(
platform(libs.arrow.stack),
libs.arrow.core,
libs.kotlinLogging,
libs.kotlin.reflect,
libs.kotlinx.coroutines.core,
libs.kotlinx.serialization.json,
).map {
implementation(it)
}


api(libs.arrow.core)

listOf(
libs.kotest.runner,
libs.kotest.assertions.core,
Expand Down
4 changes: 3 additions & 1 deletion google-kms-grpc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ plugins {

dependencies {
protobuf(libs.google.kms.protobuf)

listOf(
projects.core,
platform(libs.arrow.stack),
libs.arrow.core,
libs.grpc.protobuf,
libs.grpc.stub,
libs.grpc.stubKotlin,
Expand All @@ -27,6 +27,8 @@ dependencies {
api(it)
}

api(libs.arrow.core)

listOf(
libs.kotest.runner,
libs.kotest.assertions.core,
Expand Down
3 changes: 2 additions & 1 deletion jwks/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ dependencies {
listOf(
projects.core,
platform(libs.arrow.stack),
libs.arrow.core,
libs.kotlin.reflect,
libs.kotlinLogging,
libs.kotlinx.coroutines.core,
Expand All @@ -19,6 +18,8 @@ dependencies {
api(it)
}

api(libs.arrow.core)

listOf(
libs.kotest.runner,
libs.kotest.assertions.core,
Expand Down

0 comments on commit ba4a2df

Please sign in to comment.