46 lines
840 B
Groovy
46 lines
840 B
Groovy
plugins {
|
|
id 'application'
|
|
id("com.github.johnrengelman.shadow") version "7.1.2"
|
|
}
|
|
|
|
application.mainClass = "de.ocame.ffdiscordbot.Main"
|
|
group 'de.ocame'
|
|
version '1.3-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.0.1"
|
|
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 "ch.qos.logback:logback-classic:1.5.6"
|
|
// compile "org.json:json:20141113"
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|