15 lines
278 B
Kotlin
15 lines
278 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlin.jvm)
|
|
application
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":engine"))
|
|
implementation(libs.kotlinx.coroutines.core)
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
application {
|
|
mainClass.set("com.jsjdesigns.poker.sim.MainKt")
|
|
}
|