1234567891011121314151617181920212223242526272829303132333435363738394041 |
- defaultTasks 'distZip'
- apply plugin: 'java-library'
- apply plugin: 'application'
- sourceCompatibility = 1.8
- version = 'SNAPSHOT'
- mainClassName = 'de.nplusc.izc.TWPUtil.OpenGUI'
- jar{
- manifest{
- attributes 'Implementation-Title': 'iZToolKit',
- 'Implementation-Version': 'SNAPSHOT',
- 'Main-Class': 'de.nplusc.izc.TWPUtil.OpenGUI'
-
- }
- }
- repositories{
- mavenCentral()
- }
- dependencies{
- api fileTree(dir: 'lib', include: '*.jar')
- api "commons-io:commons-io:2.+"
- api 'org.apache.commons:commons-exec:1.3'
- api "org.yaml:snakeyaml:1.14"
- api 'org.xerial:sqlite-jdbc:3.8.7'
- api 'mysql:mysql-connector-java:5.1.6'
-
- api 'org.im4java:im4java:1.4.0'
- api(project(':ToolKit')) {
- transitive = false
- }
-
- }
|