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' }