kotlin-kodein-dependency-injection
Kotlin Dependency Injection with Kodein 1. Overview In this article, we’ll introduce Kodein — a pure Kotlin dependency injection (DI) framework — and compare it with other popular DI frameworks. 2. Dependency First, let’s add the Kodein dependency to our pom.xml: <dependency> <groupId>com.github.salomonbrys.kodein</groupId> <artifactId>kodein</artifactId> <version>4.1.0</version> </dependency> Please note that the… Continue Reading kotlin-kodein-dependency-injection