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