Initial Commit

This commit is contained in:
Valentijn van der Jagt
2025-11-24 21:36:30 +01:00
commit fbba18fd49
16 changed files with 1018 additions and 0 deletions

27
build.gradle.kts Executable file
View File

@@ -0,0 +1,27 @@
plugins {
application
id("com.gradleup.shadow") version "8.3.1"
}
application.mainClass = "nl.herpiederpiee.discordbot.Bot"
group = "nl.herpiederpiee.discordbot"
version = "1.0"
val jdaVersion = "6.1.1" //
repositories {
mavenCentral()
}
dependencies {
implementation("net.dv8tion:JDA:$jdaVersion")
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
options.isIncremental = true
sourceCompatibility = "1.8"
}