123456789101112131415161718192021222324252627 |
- defaultTasks 'distZip'
- apply plugin: 'java'
- apply plugin: 'application'
- sourceCompatibility = 1.8
- version = 'SNAPSHOT'
- mainClassName = 'de.nplusc.izc.logblockheatmapper.EntryPoint'
- jar{
- manifest{
- attributes 'Implementation-Title': 'iZLbHeatmapper',
- 'Implementation-Version': 'SNAPSHOT',
- 'Main-Class': 'de.nplusc.izc.logblockheatmapper.EntryPoint'
-
- }
- }
- repositories{
- mavenCentral()
- }
- dependencies{
- compile group: 'com.alexdupre', name: 'pngj', version: '2+'
- }
|