27 lines
452 B
Kotlin
Executable File
27 lines
452 B
Kotlin
Executable File
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"
|
|
} |