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