You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
364 B
Kotlin
19 lines
364 B
Kotlin
plugins {
|
|
kotlin("jvm") version "2.0.20"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(8)
|
|
}
|
|
|
|
dependencies {
|
|
implementation(gradleApi())
|
|
implementation("org.simpleframework:simple-xml:2.7.1")
|
|
implementation("com.soywiz.korlibs.korte:korte-jvm:4.0.10")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1")
|
|
}
|