Initial Commit
This commit is contained in:
27
build.gradle.kts
Executable file
27
build.gradle.kts
Executable 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"
|
||||
}
|
||||
Reference in New Issue
Block a user