- Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
25 lines (20 loc) · 545 Bytes
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
plugins {
id("java")
}
group ="org.togetherjava"
version ="1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
implementation("net.dv8tion:JDA:5.0.0-beta.12") {
exclude(module ="opus-java")
}
// https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-toml
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-toml:2.15.2")
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}