12345678910111213141516171819202122232425262728293031323334353637 |
- defaultTasks 'distZip'
- apply plugin: 'java-library'
- apply plugin: 'application'
- sourceCompatibility = 1.8
- version = 'SNAPSHOT'
- mainClassName = 'de.nplusc.iZc.MazeGame.GUI'
- jar{
- manifest{
- attributes 'Implementation-Title': 'iZToolKit',
- 'Implementation-Version': 'SNAPSHOT',
- 'Main-Class': 'de.nplusc.iZc.MazeGame.GUI'
-
- }
- }
- 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(project(':ToolKit')) {
- transitive = false
- }
-
- }
|