23 lines
330 B
Plaintext
23 lines
330 B
Plaintext
plugins {
|
|
kotlin("jvm") version "1.9.10"
|
|
}
|
|
|
|
group = "center.sciprog"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.4.1")
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(11)
|
|
} |