23 lines
397 B
Plaintext
23 lines
397 B
Plaintext
plugins {
|
|
kotlin("jvm") version "1.9.23"
|
|
}
|
|
|
|
group = "loli.ball"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0-RC.2")
|
|
implementation("io.github.jaredmdobson:concentus:1.0.2")
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
} |