2016-01-15 08:49:17 +01:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
maven {
|
|
|
|
name 'forge'
|
|
|
|
url 'http://files.minecraftforge.net/maven'
|
|
|
|
}
|
2016-01-15 08:59:50 +01:00
|
|
|
maven {
|
|
|
|
name = 'sponge'
|
|
|
|
url = 'http://repo.spongepowered.org/maven'
|
|
|
|
}
|
2016-01-15 08:49:17 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2016-03-01 06:33:09 +01:00
|
|
|
classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT'
|
|
|
|
classpath 'org.spongepowered:mixingradle:0.4-SNAPSHOT'
|
2016-01-15 08:49:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-01 06:33:09 +01:00
|
|
|
ext.revision = 210
|
2015-08-02 00:36:33 +02:00
|
|
|
|
2016-03-09 22:12:28 +01:00
|
|
|
apply plugin: 'net.minecraftforge.gradle.liteloader'
|
2016-01-15 08:59:50 +01:00
|
|
|
apply plugin: 'org.spongepowered.mixin'
|
2016-01-15 08:49:17 +01:00
|
|
|
|
2015-11-17 06:09:04 +01:00
|
|
|
archivesBaseName = "MineLittlePony"
|
|
|
|
group = 'com.brohoof.minelp'
|
2016-03-09 22:12:28 +01:00
|
|
|
version = '1.8.9.0'
|
2015-08-02 00:36:33 +02:00
|
|
|
|
2016-03-01 05:38:13 +01:00
|
|
|
ext.startClass = 'com.mumfrey.liteloader.debug.Start'
|
2015-08-02 00:36:33 +02:00
|
|
|
minecraft {
|
2016-03-01 06:33:09 +01:00
|
|
|
version = "1.8.9"
|
2016-03-09 22:12:28 +01:00
|
|
|
mappings = 'stable_22'
|
2015-10-07 00:42:46 +02:00
|
|
|
runDir = 'run'
|
2015-11-17 06:09:04 +01:00
|
|
|
replace '@VERSION@',project.version
|
2015-08-02 00:36:33 +02:00
|
|
|
}
|
2015-12-09 22:05:21 +01:00
|
|
|
sourceSets {
|
|
|
|
def deps = [
|
|
|
|
configurations.forgeGradleMcDeps,
|
|
|
|
configurations.forgeGradleMc,
|
2016-01-26 09:16:11 +01:00
|
|
|
configurations.compile,
|
2015-12-09 22:05:21 +01:00
|
|
|
]
|
|
|
|
hdskins {
|
|
|
|
compileClasspath += files deps
|
2016-01-19 06:34:07 +01:00
|
|
|
refMap = 'mixin.hdskins.refmap.json'
|
2015-12-09 22:05:21 +01:00
|
|
|
}
|
2016-01-26 09:16:11 +01:00
|
|
|
main {
|
|
|
|
refMap = 'mixin.minelp.refmap.json'
|
|
|
|
compileClasspath += hdskins.output
|
2015-11-17 06:19:58 +01:00
|
|
|
}
|
2016-01-26 09:16:11 +01:00
|
|
|
forge {
|
2016-01-26 09:17:08 +01:00
|
|
|
compileClasspath += files(deps + [ main.output, api.output ])
|
2015-11-17 06:19:58 +01:00
|
|
|
}
|
|
|
|
}
|
2016-03-01 05:38:13 +01:00
|
|
|
//project('LiteLoader'){
|
|
|
|
// mcMappings = rootProject.minecraft.mappings
|
|
|
|
//}
|
2015-11-17 06:09:04 +01:00
|
|
|
processResources {
|
|
|
|
def props = [
|
|
|
|
version: version,
|
|
|
|
mcversion: minecraft.version,
|
|
|
|
revision: revision
|
|
|
|
]
|
|
|
|
inputs.properties props
|
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
|
|
include 'litemod.json'
|
|
|
|
expand props
|
|
|
|
}
|
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
|
|
exclude 'litemod.json'
|
|
|
|
}
|
|
|
|
}
|
2016-01-15 08:49:17 +01:00
|
|
|
|
2015-08-02 00:36:33 +02:00
|
|
|
jar {
|
2016-03-09 22:12:28 +01:00
|
|
|
//afterEvaluate { manifest.attributes.remove 'TweakClass'}
|
2016-01-26 09:17:08 +01:00
|
|
|
from sourceSets.findAll { it.name != 'api' }*.output
|
2015-11-17 06:09:04 +01:00
|
|
|
|
2016-03-09 22:12:28 +01:00
|
|
|
//extension 'litemod'
|
|
|
|
//appendix "mc$minecraft.version"
|
2015-12-08 22:53:08 +01:00
|
|
|
}
|
2016-01-15 08:59:50 +01:00
|
|
|
mixin {
|
|
|
|
defaultObfuscationEnv notch
|
|
|
|
}
|
2016-01-26 09:16:11 +01:00
|
|
|
task deploy(type: Copy, dependsOn: build) {
|
|
|
|
from jar.archivePath
|
2015-12-13 09:30:27 +01:00
|
|
|
into file("$System.env.APPDATA/.minecraft/mods")
|
|
|
|
}
|