I was just setting up a new project with `ktor-aut...
# ktor
e
I was just setting up a new project with
ktor-auth-jwt
as a dependecy and I now wonder why I have a transitive dependency for
ktor-server-test-host
. I searched among the dependency tree and found that
ktor-auth
declares it. Excluding it within my build file would be an option but is there any need for this to be not declared as
testCompile
?
c
Sure, will be removed from
ktor-auth
. For now you can exclude it
👍 2