mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-22 12:37:59 +01:00
28 lines
No EOL
557 B
Groovy
28 lines
No EOL
557 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'
|
|
classifier 'dev'
|
|
}
|
|
task obfJar(type:Jar) {
|
|
from sourceSets.main.output
|
|
}
|
|
reobf {
|
|
jar.task.enabled = false
|
|
obfJar {}
|
|
} |