Added possibility to build fatJar.

This commit is contained in:
Alexey Zinchenko 2019-02-16 12:24:29 +03:00
parent 1e862fd8ae
commit 676aa2bed4

View File

@ -11,6 +11,14 @@ repositories {
mavenCentral()
}
task fatJar(type: Jar) {
manifest {
attributes 'Main-Class': 'com.github.prominence.randomkitties.bot.Main'
}
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
dependencies {
compile "org.telegram:telegrambots:4.1.2"
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.11.2'