From 61586eaabcafa7302e7ae03d309a1ce4798c295d Mon Sep 17 00:00:00 2001 From: cssxsh <32539286+cssxsh@users.noreply.github.com> Date: Mon, 17 Jan 2022 12:30:00 +0800 Subject: [PATCH] build: exclude dependency (#11) --- build.gradle.kts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index be288dd..c99257b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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 {