31 lines
607 B
Kotlin
31 lines
607 B
Kotlin
plugins {
|
|
id("java")
|
|
id("application")
|
|
}
|
|
|
|
group = "dev.ksan"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
// Lavalink client artifacts.
|
|
maven("https://maven.lavalink.dev/releases")
|
|
}
|
|
|
|
dependencies {
|
|
implementation("net.dv8tion:JDA:6.5.0")
|
|
implementation("dev.arbjerg:lavalink-client:3.4.0")
|
|
implementation("org.slf4j:slf4j-simple:2.0.16")
|
|
|
|
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
}
|
|
|
|
application {
|
|
mainClass.set("dev.ksan.botinator.Main")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|