MineLittlePony/voxellib/build.gradle
Matthew Messinger 2f01397d5e Change package
2015-11-17 00:09:04 -05:00

18 lines
433 B
Groovy

apply plugin: 'net.minecraftforge.gradle.tweaker-client'
archivesBaseName = "voxelcommon"
version = "2.4.0"
minecraft {
version = "1.8"
mappings = 'snapshot_20151027'
runDir = '../run'
tweakClass = 'com.mumfrey.liteloader.launch.LiteLoaderTweaker'
}
repositories.flatDir {
dir '../liteloader'
}
dependencies {
deobfCompile 'com.mumfrey:liteloader:1.8-SNAPSHOT:srgnames'
}
jar.manifest.attributes.remove 'TweakClass'