1
0

build.gradle 414 B

123456789101112131415161718192021222324
  1. apply plugin:'java'
  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. compile fileTree(dir: 'lib', include: '*.jar')
  17. compile project(':iZpl')
  18. }