MineLittlePony/build.gradle

103 lines
2.1 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 {
2016-05-17 15:26:03 -04:00
classpath 'net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT'
2017-08-08 16:41:04 -04:00
classpath 'org.spongepowered:mixingradle:0.5-SNAPSHOT'
2016-01-15 02:49:17 -05: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
2016-12-02 23:40:40 -05:00
group = 'com.minelittlepony'
2017-08-08 16:41:04 -04:00
version = '1.11.2.4'
description = 'Mine Little Pony'
2015-08-01 18:36:33 -04:00
targetCompatibility = 1.8
sourceCompatibility = 1.8
2015-08-01 18:36:33 -04:00
minecraft {
2016-12-25 20:27:29 -05:00
version = "1.11.2"
mappings = 'snapshot_20161224'
2015-10-06 18:42:46 -04:00
runDir = 'run'
2016-12-25 20:27:29 -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
}
2015-11-17 00:19:58 -05:00
}
litemod.json {
author = 'Verdana, Rene_Z, Mumfrey, JoyJoy'
description = 'Mine Little Pony turns players and mobs into ponies'
description.minelittlepony = '''\
Mine Little Pony turns players and mobs into ponies
Press F9 ingame to access settings'''.stripIndent()
description.hdskinsmod = '''\
Seperate skin server for Mine Little Pony that also supports HD skins.
Access via Skin Manager key binding (default: F1) in the main menu.'''.stripIndent()
mixinConfigs += [
'mixin.minelp.json',
'mixin.hdskins.json'
]
2015-11-17 00:09:04 -05:00
}
2015-08-01 18:36:33 -04:00
jar {
from sourceSets.hdskins.output
from litemod.outputs
2015-12-08 16:53:08 -05:00
}
sourceJar {
// add hdskins sources
from sourceSets.hdskins.allSource
}
task srgJar(type: Jar) {
from sourceSets.hdskins.output
from litemod.outputs
classifier "mc$minecraft.version-srg"
baseName "mod-${project.name.toLowerCase()}"
}
task skinZip(type: Zip) {
from fileTree('skins')
baseName 'Pony Skin Resources'
version 'v1'
}
reobf {
srgJar {
mappingType = 'SEARGE'
}
}
2016-01-15 02:59:50 -05:00
mixin {
defaultObfuscationEnv notch
2016-01-15 02:59:50 -05:00
}
// windows only
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")
}