1
0
mirror of https://github.com/aNNiMON/ffmpegbot synced 2024-09-19 22:54:20 +03:00
ffmpegbot/build.gradle

34 lines
584 B
Groovy
Raw Normal View History

2023-01-10 16:55:02 +02:00
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'
}