1234567891011121314151617181920212223242526272829 |
- defaultTasks 'distZip'
- apply plugin: 'java'
- apply plugin: 'application'
- sourceCompatibility = 1.8
- version = 'SNAPSHOT'
- mainClassName = 'de.nplusc.izc.streamer.iZstreamer'
- repositories{
- mavenCentral()
- }
- dependencies{
- compile fileTree(dir: 'lib', include: '*.jar')
- compile "commons-io:commons-io:2.+"
- compile 'org.apache.commons:commons-exec:1.3'
- compile "org.yaml:snakeyaml:1.14"
- compile "commons-net:commons-net:3.3"
- compile 'net.java.dev.jna:jna:3.5.2'
- compile 'uk.co.caprica:vlcj:3.0.1' //HACK! bezüglich JNA
- compile(project(':ToolKit')) {
- transitive = false
- }
-
- }
|