We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6ee459 commit 58b31edCopy full SHA for 58b31ed
2 files changed
client-kotlin/build.gradle.kts
@@ -6,8 +6,8 @@ plugins {
6
description = "Restate Client to interact with services from within other Kotlin applications"
7
8
dependencies {
9
- api(project(":client"))
10
- implementation(libs.kotlinx.coroutines.core)
+ api(project(":client")) { exclude("dev.restate", "sdk-serde-jackson") }
+ api(project(":sdk-serde-kotlinx"))
11
12
- runtimeOnly(project(":sdk-serde-kotlinx"))
+ implementation(libs.kotlinx.coroutines.core)
13
}
client/build.gradle.kts
@@ -11,9 +11,8 @@ dependencies {
compileOnly(libs.jspecify)
api(project(":common"))
14
+ api(project(":sdk-serde-jackson"))
15
16
implementation(libs.jackson.core)
17
implementation(libs.log4j.api)
-
18
- runtimeOnly(project(":sdk-serde-jackson"))
19
0 commit comments