12 lines
190 B
Kotlin
12 lines
190 B
Kotlin
|
|
plugins {
|
||
|
|
alias(libs.plugins.kotlin.jvm)
|
||
|
|
}
|
||
|
|
|
||
|
|
kotlin {
|
||
|
|
jvmToolchain(11)
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
testImplementation(libs.kotlin.test)
|
||
|
|
testImplementation(libs.atrium)
|
||
|
|
}
|
||
|
|
}
|