I'm new to Koin so hopefully I'm just doing someth...
# koin
p
I'm new to Koin so hopefully I'm just doing something stupid. I have a working Ktor backend service running with Koin but I'm trying to add tests. As soon as I add the dependency
Copy code
<dependency>
            <groupId>org.koin</groupId>
            <artifactId>koin-test</artifactId>
            <version>2.2.0-beta-1</version>
            <scope>test</scope>
        </dependency>
I fail to even start the service with error:
Kotlin: Cannot access class 'org.koin.core.scope.ScopeInstance'. Check your module classpath for missing or conflicting dependencies
in all places where I use
org.koin.ktor.ext.inject
.
Looks like I had to add
Copy code
<dependency>
            <groupId>org.koin</groupId>
            <artifactId>koin-core-ext</artifactId>
            <version>${koin_version}</version>
        </dependency>
as well.
Thanks for being rubber duck