plugins { id 'application' id("com.gradleup.shadow") version "8.3.0" } application.mainClass = "de.ocame.ffdiscordbot.Main" group 'de.ocame' version '1.4-SNAPSHOT' repositories { mavenCentral() } sourceCompatibility = '17' targetCompatibility = '17' tasks.withType(JavaCompile) { options.encoding = 'UTF-8' } /* application { mainModule = 'de.ocame.ffdiscordbot' mainClass = 'de.ocame.ffdiscordbot.Main' } */ dependencies { implementation "net.dv8tion:JDA:5.2.3" implementation 'org.jsoup:jsoup:1.15.3' implementation 'com.google.code.gson:gson:2.8.9' implementation 'org.xerial:sqlite-jdbc:3.41.2.2' implementation 'org.json:json:20231013' implementation 'com.mysql:mysql-connector-j:9.2.0' implementation 'com.fasterxml.jackson.core:jackson-databind:2.0.1' implementation "ch.qos.logback:logback-classic:1.5.6" // compile "org.json:json:20141113" } test { useJUnitPlatform() }