mirror of
https://github.com/WinDurango/WinDurangoBot.git
synced 2026-02-04 02:51:17 +01:00
21 lines
337 B
Plaintext
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()
|
|
} |