1
0

build.gradle 732 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. defaultTasks 'distZip'
  2. apply plugin: 'java-library'
  3. apply plugin: 'application'
  4. sourceCompatibility = 1.8
  5. version = 'SNAPSHOT'
  6. mainClassName = 'de.nplusc.izc.TWPUtil.OpenGUI'
  7. jar{
  8. manifest{
  9. attributes 'Implementation-Title': 'iZToolKit',
  10. 'Implementation-Version': 'SNAPSHOT',
  11. 'Main-Class': 'de.nplusc.izc.TWPUtil.OpenGUI'
  12. }
  13. }
  14. repositories{
  15. mavenCentral()
  16. }
  17. dependencies{
  18. api fileTree(dir: 'lib', include: '*.jar')
  19. api "commons-io:commons-io:2.+"
  20. api 'org.apache.commons:commons-exec:1.3'
  21. api "org.yaml:snakeyaml:1.14"
  22. api 'org.xerial:sqlite-jdbc:3.8.7'
  23. api 'mysql:mysql-connector-java:5.1.6'
  24. api 'org.im4java:im4java:1.4.0'
  25. api(project(':ToolKit')) {
  26. transitive = false
  27. }
  28. }