1
0

build.gradle 599 B

1234567891011121314151617181920212223242526272829
  1. defaultTasks 'distZip'
  2. apply plugin: 'java'
  3. apply plugin: 'application'
  4. sourceCompatibility = 1.8
  5. version = 'SNAPSHOT'
  6. mainClassName = 'de.nplusc.izc.streamer.iZstreamer'
  7. repositories{
  8. mavenCentral()
  9. }
  10. dependencies{
  11. compile fileTree(dir: 'lib', include: '*.jar')
  12. compile "commons-io:commons-io:2.+"
  13. compile 'org.apache.commons:commons-exec:1.3'
  14. compile "org.yaml:snakeyaml:1.14"
  15. compile "commons-net:commons-net:3.3"
  16. compile 'net.java.dev.jna:jna:3.5.2'
  17. compile 'uk.co.caprica:vlcj:3.0.1' //HACK! bezüglich JNA
  18. compile(project(':ToolKit')) {
  19. transitive = false
  20. }
  21. }