Code Optimierung

This commit is contained in:
Ocame
2025-08-31 19:38:28 +02:00
parent 4075203e6f
commit f2af6316dc

View File

@ -12,10 +12,6 @@ repositories {
mavenCentral() mavenCentral()
} }
sourceCompatibility = '17'
targetCompatibility = '17'
tasks.withType(JavaCompile) { tasks.withType(JavaCompile) {
options.encoding = 'UTF-8' options.encoding = 'UTF-8'
} }
@ -34,11 +30,11 @@ dependencies {
implementation 'org.xerial:sqlite-jdbc:3.41.2.2' implementation 'org.xerial:sqlite-jdbc:3.41.2.2'
implementation 'org.json:json:20231013' implementation 'org.json:json:20231013'
implementation 'com.mysql:mysql-connector-j:9.2.0' implementation 'com.mysql:mysql-connector-j:9.2.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.0.1' implementation 'com.fasterxml.jackson.core:jackson-databind:2.19.2'
implementation "ch.qos.logback:logback-classic:1.5.6" implementation "ch.qos.logback:logback-classic:1.5.18"
// compile "org.json:json:20141113" // compile "org.json:json:20141113"
} }