1
0

build.gradle 618 B

12345678910111213141516171819202122232425262728293031323334
  1. defaultTasks 'distZip'
  2. apply plugin: 'java-library'
  3. apply plugin: 'application'
  4. sourceCompatibility = 1.8
  5. version = 'SNAPSHOT'
  6. mainClassName = 'de.nplusc.izc.iZtools.launcher.iZlaunchCore.java'
  7. repositories{
  8. mavenCentral()
  9. }
  10. compileJava {
  11. options.compilerArgs << '-Xlint:none'
  12. options.compilerArgs << '-Xlint:-deprecation'
  13. options.compilerArgs << '-XDignore.symbol.file'
  14. }
  15. dependencies{
  16. api fileTree(dir: 'lib', include: '*.jar')
  17. api "commons-io:commons-io:2.+"
  18. api 'org.apache.commons:commons-exec:1.3'
  19. api "commons-net:commons-net:3.3"
  20. api(project(':ToolKit')) {
  21. transitive = false
  22. }
  23. }