mirror of
https://github.com/Prominence/random-kitties-telegram-bot.git
synced 2026-01-08 03:16:43 +03:00
28 lines
673 B
Groovy
28 lines
673 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'com.github.prominence'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
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'
|
|
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.11.2'
|
|
compile group: 'com.alibaba', name: 'fastjson', version: '1.2.44'
|
|
}
|