Skip to content

Commit

Permalink
build: exclude dependency (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
cssxsh authored Jan 17, 2022
1 parent 6e4a7d2 commit 61586ea
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ repositories {
}

dependencies {
implementation("io.ktor:ktor-client-serialization:1.5.4")
implementation("io.ktor:ktor-client-serialization:1.5.4") {
exclude(group = "org.jetbrains.kotlin")
exclude(group = "org.jetbrains.kotlinx")
exclude(group = "org.slf4j")
exclude(group = "io.ktor", module = "ktor-client-core")
}
}

tasks {
Expand Down

0 comments on commit 61586ea

Please sign in to comment.