1234567891011121314151617181920212223 |
- defaultTasks 'distZip'
- apply plugin: 'java'
- apply plugin: 'application'
- sourceCompatibility = 1.8
- version = 'SNAPSHOT'
- mainClassName = 'de.nplusc.izc.logblockheatmapper.LogBlockHeatmapper'
- jar{
- manifest{
- attributes 'Implementation-Title': 'iZLbHeatmapper',
- 'Implementation-Version': 'SNAPSHOT',
- 'Main-Class': 'de.nplusc.izc.logblockheatmapper.LogBlockHeatmapper'
-
- }
- }
- repositories{
- jcenter()
- }
|