plugins { id 'net.minecraftforge.gradle.tweaker-client' version '2.0.1' } evaluationDependsOnChildren() archivesBaseName = "mod_minelp" version = "1.8-UNOFFICIAL_mc1.8" minecraft { version = "1.8" mappings = 'snapshot_20150606' tweakClass = 'com.mumfrey.liteloader.launch.LiteLoaderTweaker' runDir = 'run' // fix reobf issues // srgExtra "FD: com/voxelmodpack/common/properties/gui/GuiVoxelBoxSettingsPanel/zLevel bub/e" // srgExtra "FD: com/voxelmodpack/common/gui/GuiControl/zLevel bub/e" // srgExtra "FD: com/voxelmodpack/common/gui/GuiScreenEx/zLevel bub/e" } repositories.flatDir { dir 'voxellib/liteloader' } dependencies { compile project(':voxellib') } jar { extension 'litemod' manifest.attributes.remove 'TweakClass' } task standaloneJar(type:Jar, dependsOn: [reobfJar, project(':voxellib').reobfJar]) { extension "litemod" from zipTree(jar.archivePath) from project(':voxellib').jar.archivePath classifier 'standalone' } artifacts { archives standaloneJar }