update und clean

This commit is contained in:
Ocame
2025-06-25 13:02:50 +02:00
parent 9d8e93c47a
commit 606a436193
20 changed files with 166 additions and 189 deletions

View File

@ -1,25 +1,26 @@
plugins {
id'application'
id'com.github.johnrengelman.shadow' version '7.1.2'
id ('com.gradleup.shadow') version '8.3.0'
id 'java'
}
application.mainClass = "core.Main"
group 'de.ocame'
version '0.20'
group = 'de.ocame'
version = '0.20'
repositories {
mavenCentral()
}
//def jdaVersion = '3.8.3_460'
def jdaVersion = '5.2.3'
def jdaVersion = '5.6.1'
apply plugin: 'java'
sourceCompatibility = '17'
targetCompatibility = '17'
java {
sourceCompatibility = '21'
targetCompatibility = '21'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
@ -34,6 +35,6 @@ dependencies {
implementation 'org.json:json:20231013'
implementation 'com.mysql:mysql-connector-j:9.2.0'
implementation "ch.qos.logback:logback-classic:1.5.6"
implementation 'ch.qos.logback:logback-classic:1.5.13'
}