123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- defaultTasks 'distZip'
- apply plugin: 'java'
- apply plugin: 'application'
- sourceCompatibility = 1.8
- version = 'SNAPSHOT'
- mainClassName = 'de.nplusc.izc.iZpl.Builder'
- jar{
- manifest{
- attributes 'Implementation-Title': 'iZToolKit',
- 'Implementation-Version': 'SNAPSHOT',
- 'Main-Class': 'de.nplusc.izc.iZpl.Builder'
-
- }
- }
- repositories{
- jcenter()
- }
- compileJava {
- options.compilerArgs << '-Xlint:none'
- options.compilerArgs << '-Xlint:-deprecation'
- options.compilerArgs << '-XDignore.symbol.file'
- }
- 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 'org.ini4j:ini4j:0.5.2'
- compile 'org.im4java:im4java:1.4.0'
- compile 'net.java.dev.jna:jna:3.5.2'
- compile 'uk.co.caprica:vlcj:3.0.1' //HACK! bezüglich JNA
- compile 'org.xerial:sqlite-jdbc:3.8.7'
- compile 'mysql:mysql-connector-java:5.1.6'
- compile(project(':ToolKit')) {
- transitive = false
- }
-
- }
|