apply plugin: 'java-library' task distZip(dependsOn: 'fatJar') { //NO-OPtask als redirect } task fatJar(type: Jar) { manifest{ attributes 'Implementation-Title': 'iZPlaylist-WMP', 'Implementation-Version': 'SNAPSHOT' } baseName = project.name + '-all' from { zipTree("lib/com4j.jar") } with jar } dependencies { api fileTree(dir: 'lib', include: '*.jar') api project(':iZpl') }