1
0

build.gradle 521 B

123456789101112131415161718192021222324252627
  1. defaultTasks 'distZip'
  2. apply plugin: 'java-library'
  3. apply plugin: 'application'
  4. sourceCompatibility = 1.8
  5. version = 'SNAPSHOT'
  6. mainClassName = 'de.nplusc.izc.logblockheatmapper.EntryPoint'
  7. jar{
  8. manifest{
  9. attributes 'Implementation-Title': 'iZLbHeatmapper',
  10. 'Implementation-Version': 'SNAPSHOT',
  11. 'Main-Class': 'de.nplusc.izc.logblockheatmapper.EntryPoint'
  12. }
  13. }
  14. repositories{
  15. mavenCentral()
  16. }
  17. dependencies{
  18. api group: 'com.alexdupre', name: 'pngj', version: '2+'
  19. }