16 lines
382 B
Plaintext
16 lines
382 B
Plaintext
|
|
plugins {
|
||
|
|
alias(libs.plugins.kotlin.jvm)
|
||
|
|
}
|
||
|
|
|
||
|
|
// Pure JVM, like :domain:cycle. This module is the product, so it needs the
|
||
|
|
// most tests, and tests that need an emulator are tests that do not get run.
|
||
|
|
kotlin {
|
||
|
|
jvmToolchain(21)
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation(project(":domain:cycle"))
|
||
|
|
testImplementation(project(":domain:cycle"))
|
||
|
|
testImplementation(libs.junit)
|
||
|
|
}
|