MineLittlePony/build.gradle

100 lines
2 KiB
Groovy
Raw Normal View History

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 {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
classpath 'org.spongepowered:mixingradle:0.4-SNAPSHOT'
2016-01-15 08:49:17 +01: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
2016-12-03 05:40:40 +01:00
group = 'com.minelittlepony'
version = '1.12_0'
description = 'Mine Little Pony'
2015-08-02 00:36:33 +02:00
targetCompatibility = 1.8
sourceCompatibility = 1.8
2015-08-02 00:36:33 +02:00
minecraft {
version = "1.12"
mappings = 'snapshot_20170611'
2015-10-07 00:42:46 +02:00
runDir = 'run'
2016-12-26 02:27:29 +01:00
replace '@VERSION@', project.version
2015-08-02 00:36:33 +02:00
}
2015-12-09 22:05:21 +01:00
sourceSets {
hdskins {
compileClasspath += main.compileClasspath
2015-12-09 22:05:21 +01:00
}
2016-01-26 09:16:11 +01:00
main {
compileClasspath += hdskins.output
2015-11-17 06:19:58 +01:00
}
}
mixin {
add sourceSets.main, 'mixin.minelp.refmap.json'
add sourceSets.hdskins, 'mixin.hdskins.refmap.json'
2015-11-17 06:19:58 +01: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 06:09:04 +01:00
}
2015-08-02 00:36:33 +02:00
jar {
from sourceSets.hdskins.output
from litemod.outputs
2015-12-08 22:53:08 +01: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 08:59:50 +01:00
mixin {
defaultObfuscationEnv notch
2016-01-15 08:59:50 +01:00
}
// windows only
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")
}