defaultTasks 'distZip' apply plugin: 'java' apply plugin: 'application' sourceCompatibility = 1.8 version = 'SNAPSHOT' mainClassName = 'de.nplusc.izc.logblockheatmapper.EntryPoint' jar{ manifest{ attributes 'Implementation-Title': 'iZLbHeatmapper', 'Implementation-Version': 'SNAPSHOT', 'Main-Class': 'de.nplusc.izc.logblockheatmapper.EntryPoint' } } repositories{ mavenCentral() jcenter() } dependencies{ compile group: 'com.alexdupre', name: 'pngj', version: '2+' }