Fixes empty designer jar

This commit is contained in:
modmuss50 2016-04-16 09:17:42 +01:00
parent 70f458d089
commit 58acfb9337
No known key found for this signature in database
GPG key ID: 1838986A0F12E8EE

View file

@ -115,9 +115,10 @@ task deobfJar(type: Jar) {
task designerJar(type: Jar) { task designerJar(type: Jar) {
from sourceSets.main.output from sourceSets.main.output
classifier = 'designer' classifier = 'designer'
exclude "techreborn/**" include "techreborn/manual/designer/**"
include "techreborn/manual/designer" include "techreborn/manual/saveFormat/**"
include "techreborn/manual/saveFormat" include "assets/techreborn/designer/**"
include "assets/techreborn/textures/manual/**"
manifest { attributes 'Main-Class': 'techreborn.manual.designer.ManualDesigner' } manifest { attributes 'Main-Class': 'techreborn.manual.designer.ManualDesigner' }
} }