build.gradle 439 B

123456789101112131415161718192021222324
  1. apply plugin: 'java-library'
  2. task distZip(dependsOn: 'fatJar') {
  3. //NO-OPtask als redirect
  4. }
  5. task fatJar(type: Jar) {
  6. manifest{
  7. attributes 'Implementation-Title': 'iZPlaylist-WMP',
  8. 'Implementation-Version': 'SNAPSHOT'
  9. }
  10. baseName = project.name + '-all'
  11. from { zipTree("lib/com4j.jar") }
  12. with jar
  13. }
  14. dependencies
  15. {
  16. api fileTree(dir: 'lib', include: '*.jar')
  17. api project(':iZpl')
  18. }