26 lines
No EOL
560 B
Text
26 lines
No EOL
560 B
Text
plugins {
|
|
kotlin("jvm") version "1.9.23"
|
|
kotlin("plugin.serialization") version "1.9.23"
|
|
}
|
|
|
|
group = "ru.octol1ttle"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
implementation("dev.kord:kord-core:0.13.1")
|
|
implementation("io.github.oshai:kotlin-logging-jvm:6.0.9")
|
|
implementation("ch.qos.logback:logback-classic:1.5.6")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
} |