plugins { alias(libs.plugins.kotlin.jvm) } kotlin { jvmToolchain(21) } dependencies { api(project(":domain")) implementation(libs.kotlinx.coroutines.core) testImplementation(libs.junit) testImplementation(libs.kotlinx.coroutines.test) }