build.gradle 612 B

12345678910111213141516171819202122232425262728293031323334353637
  1. defaultTasks 'distZip'
  2. apply plugin: 'java-library'
  3. apply plugin: 'application'
  4. sourceCompatibility = 1.8
  5. version = 'SNAPSHOT'
  6. mainClassName = 'de.nplusc.iZc.MazeGame.GUI'
  7. jar{
  8. manifest{
  9. attributes 'Implementation-Title': 'iZToolKit',
  10. 'Implementation-Version': 'SNAPSHOT',
  11. 'Main-Class': 'de.nplusc.iZc.MazeGame.GUI'
  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(project(':ToolKit')) {
  23. transitive = false
  24. }
  25. }