Files
W-rfel-Bot/build.gradle
2025-06-25 12:00:47 +02:00

40 lines
712 B
Groovy
Executable File

plugins {
id'application'
id'com.github.johnrengelman.shadow' version '7.1.2'
}
application.mainClass = "core.Main"
group 'de.ocame'
version '0.20'
repositories {
mavenCentral()
}
//def jdaVersion = '3.8.3_460'
def jdaVersion = '5.2.3'
apply plugin: 'java'
sourceCompatibility = '17'
targetCompatibility = '17'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
dependencies {
// compile "org.slf4j:slf4j-simple:1.7.36"
implementation "net.dv8tion:JDA:$jdaVersion"
implementation 'org.jsoup:jsoup:1.15.3'
implementation 'org.json:json:20231013'
implementation 'com.mysql:mysql-connector-j:9.2.0'
implementation "ch.qos.logback:logback-classic:1.5.6"
}