Hi Kotlin team , any idea why <kotlin-client-tests...
# test
s
Hi Kotlin team , any idea why kotlin-client-tests-jvm depends on
logback-classic
as an implementation dependency instead of slf4j? This causes issue when we need slf4j-simple for common jvm tests but throws the following warning. I know i can ignore this, but having this as implementation dependency can cause issue.
Copy code
CommonTest[jvm] > httpClient()[jvm] STANDARD_ERROR
    SLF4J(W): Class path contains multiple SLF4J providers.
    SLF4J(W): Found provider [org.slf4j.simple.SimpleServiceProvider@7adfe306]
    SLF4J(W): Found provider [ch.qos.logback.classic.spi.LogbackServiceProvider@7b0453f4]
    SLF4J(W): See <https://www.slf4j.org/codes.html#multiple_bindings> for an explanation.
    SLF4J(I): Connected with provider of type [org.slf4j.simple.SimpleServiceProvider]
e
it's not clear to me why that is even published, it looks like a module for tests inside the ktor repo
s
oops..my bad. Will post it on ktor channel then. Thanks!