buildscript { repositories { jcenter() } dependencies { classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.2' } } plugins { id 'java' id 'application' id 'com.github.johnrengelman.shadow' version '2.0.2' } group 'de.romjaki' version '1.0-SNAPSHOT' mainClassName = "de.romjaki.tokenstealer.Main" manifest { jar { attributes 'Main-Class': mainClassName } } shadowJar { classifier = 'shadow' } sourceCompatibility = 1.8 repositories { mavenCentral() } dependencies { compile group: 'org.xerial', name: 'sqlite-jdbc', version: '+' testCompile group: 'junit', name: 'junit', version: '4.12' }