Files
YAEP/domain/build.gradle.kts
Christian Basler 1f588e6596 Restructure project
* use modules instead of source sets
* Kotlin JVM instead of multiplatform (for now) to make things simpler
* Warning: GameCell doesn't use mutableState anymore, this needs to be
           fixed for the UI to work!
2024-07-02 10:53:04 +02:00

12 lines
190 B
Kotlin

plugins {
alias(libs.plugins.kotlin.jvm)
}
kotlin {
jvmToolchain(11)
dependencies {
testImplementation(libs.kotlin.test)
testImplementation(libs.atrium)
}
}