Working Prototype

This commit is contained in:
coral
2026-04-16 21:45:12 -06:00
parent 3228088cd1
commit 6a92832b48
10 changed files with 434 additions and 18 deletions

View File

@@ -13,8 +13,16 @@ dependencies {
testImplementation(platform("org.junit:junit-bom:6.0.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
implementation("net.dv8tion:JDA:6.4.1")
implementation("com.google.code.gson:gson:2.7")
}
tasks.test {
useJUnitPlatform()
}
}
tasks.jar {
manifest {
attributes["Main-Class"] = "me.trouper.antispambot.Init"
}
}