2016-01-15 08:49:17 +01:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
maven {
|
|
|
|
name 'forge'
|
|
|
|
url 'http://files.minecraftforge.net/maven'
|
|
|
|
}
|
2016-04-14 03:05:51 +02:00
|
|
|
maven {
|
|
|
|
name 'm2'
|
|
|
|
url 'https://plugins.gradle.org/m2'
|
|
|
|
}
|
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-05-17 21:26:03 +02:00
|
|
|
classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT'
|
2016-03-01 06:33:09 +01:00
|
|
|
classpath 'org.spongepowered:mixingradle:0.4-SNAPSHOT'
|
2016-04-14 03:05:51 +02:00
|
|
|
classpath 'gradle.plugin.mnm.mods.kappa:ap-ide:1.0.5'
|
2016-01-15 08:49:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-19 21:46:37 +02:00
|
|
|
ext.revision = 221
|
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-04-14 03:05:51 +02:00
|
|
|
apply plugin: 'mnm.gradle.ap-ide'
|
2016-01-15 08:49:17 +01:00
|
|
|
|
2015-11-17 06:09:04 +01:00
|
|
|
group = 'com.brohoof.minelp'
|
2016-07-07 08:57:52 +02:00
|
|
|
version = '1.10.2.0'
|
2016-05-20 22:14:02 +02:00
|
|
|
description = 'Mine Little Pony'
|
2015-08-02 00:36:33 +02:00
|
|
|
|
|
|
|
minecraft {
|
2016-07-07 08:57:52 +02:00
|
|
|
version = "1.10.2"
|
|
|
|
mappings = 'snapshot_20160704' // 'murica! F*** yeah!
|
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-07-07 08:57:52 +02:00
|
|
|
litemod.json {
|
|
|
|
author = "Verdana, Rene_Z, Mumfrey, JoyJoy"
|
|
|
|
description = "Mine Little Pony turns players and mobs into ponies"
|
|
|
|
description.litemodminelittlepony = """Mine Little Pony turns players and mobs into ponies
|
|
|
|
Press F9 ingame to access settings"""
|
|
|
|
description.litemodhdskinsmod = """Seperate skin server for Mine Little Pony that also supports HD skins.
|
|
|
|
Access via Skin Manager key binding (default: F1) in the main menu."""
|
|
|
|
mixinConfigs += ['mixin.minelp.json', 'mixin.hdskins.json']
|
2015-11-17 06:09:04 +01:00
|
|
|
}
|
2016-05-30 05:59:43 +02:00
|
|
|
afterEvaluate {
|
|
|
|
dependencies {
|
|
|
|
def liteloader = project.plugins['net.minecraftforge.gradle.liteloader']
|
|
|
|
def artifact = liteloader.artifact.libraries.collect{it.name}.find{it.contains 'mixin'}
|
|
|
|
factory artifact
|
|
|
|
}
|
|
|
|
processor {
|
|
|
|
options.reobfSrgFile = mixin.reobfSrgFile
|
|
|
|
}
|
2016-04-14 03:05:51 +02:00
|
|
|
}
|
2015-08-02 00:36:33 +02:00
|
|
|
jar {
|
2016-01-26 09:17:08 +01:00
|
|
|
from sourceSets.findAll { it.name != 'api' }*.output
|
2016-07-07 08:57:52 +02:00
|
|
|
from litemod.outputs
|
2015-12-08 22:53:08 +01:00
|
|
|
}
|
2016-01-15 08:59:50 +01:00
|
|
|
mixin {
|
2016-04-14 03:05:51 +02:00
|
|
|
defaultObfuscationEnv notch
|
2016-01-15 08:59:50 +01:00
|
|
|
}
|
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")
|
|
|
|
}
|