plugins { id 'com.github.johnrengelman.shadow' version '8.1.1' id 'java' id 'application' } mainClassName = 'com.annimon.ffmpegbot.Main' group 'com.annimon' version '1.1-SNAPSHOT' sourceCompatibility = 17 targetCompatibility = 17 compileJava.options.encoding = 'UTF-8' tasks.withType(JavaCompile) { options.encoding = 'UTF-8' } repositories { mavenCentral() } dependencies { implementation 'com.annimon:tgbots-module:6.5.1' implementation 'org.slf4j:slf4j-simple:2.0.9' } test { useJUnitPlatform() } shadowJar { mergeServiceFiles() exclude 'META-INF/*.DSA' exclude 'META-INF/*.RSA' }