MineLittlePony/build.gradle

84 lines
1.8 KiB
Groovy
Raw Permalink Normal View History

2016-01-15 02:49:17 -05:00
buildscript {
repositories {
jcenter()
maven {
name 'forge'
url 'http://files.minecraftforge.net/maven'
}
2016-01-15 02:59:50 -05:00
maven {
name = 'sponge'
url = 'http://repo.spongepowered.org/maven'
}
2016-01-15 02:49:17 -05:00
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT'
classpath 'org.spongepowered:mixingradle:0.4-SNAPSHOT'
2016-01-15 02:49:17 -05:00
}
}
2016-04-06 23:40:42 -04:00
ext.revision = 212
2015-08-01 18:36:33 -04:00
2016-03-09 16:12:28 -05:00
apply plugin: 'net.minecraftforge.gradle.liteloader'
2016-01-15 02:59:50 -05:00
apply plugin: 'org.spongepowered.mixin'
2016-01-15 02:49:17 -05:00
2015-11-17 00:09:04 -05:00
group = 'com.brohoof.minelp'
2016-04-02 22:57:32 -04:00
version = '1.8.9.1'
description = 'Mine Little Pony turns players and mobs into ponies'
2015-08-01 18:36:33 -04:00
minecraft {
version = "1.8.9"
2016-03-09 16:12:28 -05:00
mappings = 'stable_22'
2015-10-06 18:42:46 -04:00
runDir = 'run'
2015-11-17 00:09:04 -05:00
replace '@VERSION@',project.version
2015-08-01 18:36:33 -04:00
}
2015-12-09 16:05:21 -05:00
sourceSets {
def deps = [
configurations.forgeGradleMcDeps,
configurations.forgeGradleMc,
2016-01-26 03:16:11 -05:00
configurations.compile,
2015-12-09 16:05:21 -05:00
]
hdskins {
compileClasspath += files deps
refMap = 'mixin.hdskins.refmap.json'
2015-12-09 16:05:21 -05:00
}
2016-01-26 03:16:11 -05:00
main {
refMap = 'mixin.minelp.refmap.json'
compileClasspath += hdskins.output
2015-11-17 00:19:58 -05:00
}
2016-01-26 03:16:11 -05:00
forge {
2016-01-26 03:17:08 -05:00
compileClasspath += files(deps + [ main.output, api.output ])
2015-11-17 00:19:58 -05:00
}
}
2016-04-02 22:57:32 -04:00
litemod.json {
name = 'minelp'
revision = ext.revision
mixinConfigs += ['mixin.minelp.json', 'mixin.hdskins.json']
//tweakClass = 'com.brohoof.minelittlepony.launch.MineLPTweaker'
}
2015-11-17 00:09:04 -05: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 02:49:17 -05:00
2015-08-01 18:36:33 -04:00
jar {
2016-01-26 03:17:08 -05:00
from sourceSets.findAll { it.name != 'api' }*.output
2015-12-08 16:53:08 -05:00
}
2016-01-15 02:59:50 -05:00
mixin {
defaultObfuscationEnv notch
}
2016-01-26 03:16:11 -05:00
task deploy(type: Copy, dependsOn: build) {
from jar.archivePath
2015-12-13 03:30:27 -05:00
into file("$System.env.APPDATA/.minecraft/mods")
}