Files
WinDurangoBot/build.gradle.kts

21 lines
337 B
Plaintext

plugins {
id("java")
}
group = "com.windurango"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
implementation("net.dv8tion:JDA:5.3.0")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}