defaultTasks 'distZip' apply plugin: 'java-library' apply plugin: 'application' sourceCompatibility = 1.8 version = 'SNAPSHOT' mainClassName = 'de.nplusc.upidgen.Ifatzeh' jar{ manifest{ attributes 'Implementation-Title': 'iZToolKit', 'Implementation-Version': 'SNAPSHOT', 'Main-Class': 'de.nplusc.izc.iZpl.Builder' } } repositories{ mavenCentral() } compileJava { options.compilerArgs << '-Xlint:none' options.compilerArgs << '-Xlint:-deprecation' options.compilerArgs << '-XDignore.symbol.file' } dependencies{ api fileTree(dir: 'lib', include: '*.jar') api "commons-io:commons-io:2.+" api 'org.apache.commons:commons-exec:1.3' api 'org.xerial:sqlite-jdbc:3.8.7' api 'mysql:mysql-connector-java:5.1.6' api group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.+' api group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.+' api group: 'org.apache.logging.log4j', name: 'log4j-iostreams', version: '2.+' api(project(':ToolKit')) { transitive = false } }