MineLittlePony/build.gradle

103 lines
2.4 KiB
Groovy
Raw Normal View History

2016-01-15 08:49:17 +01:00
buildscript {
2018-07-09 00:58:20 +02:00
repositories {
jcenter()
maven {
name 'forge'
url 'http://files.minecraftforge.net/maven'
}
maven {
name = 'sponge'
url = 'https://repo.spongepowered.org/maven'
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.3-SNAPSHOT'
classpath 'org.spongepowered:mixingradle:0.6-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.2.2-SNAPSHOT'
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 {
2018-07-09 00:58:20 +02:00
version = "1.12.2"
mappings = 'snapshot_20170919'
runDir = 'run'
replace '@VERSION@', project.version
2015-08-02 00:36:33 +02:00
}
2015-12-09 22:05:21 +01:00
sourceSets {
2018-07-09 00:58:20 +02:00
hdskins {
compileClasspath += main.compileClasspath
ext.refMap = 'hdskins.mixin.refmap.json'
}
main {
compileClasspath += hdskins.output
ext.refMap = 'minelp.mixin.refmap.json'
}
}
litemod {
2018-07-09 00:58:20 +02:00
doFirst {
json {
mcversion = '1.12.r2'
author = 'Verdana, Rene_Z, Mumfrey, Killjoy1221'
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'''
2018-07-09 00:58:20 +02:00
description.hdskinsmod = '''\
Separate skin server for Mine Little Pony that also supports HD skins.
Access via button on the main menu.'''
2018-07-09 00:58:20 +02:00
mixinConfigs += [
'minelp.mixin.json',
'hdskins.mixin.json'
]
}
}
2015-11-17 06:09:04 +01:00
}
2015-08-02 00:36:33 +02:00
jar {
2018-07-09 00:58:20 +02:00
from sourceSets.hdskins.output
from litemod
2015-12-08 22:53:08 +01:00
}
sourceJar {
2018-07-09 00:58:20 +02:00
// add hdskins sources
from sourceSets.hdskins.allSource
}
task srgJar(type: Jar) {
2018-07-09 00:58:20 +02:00
from sourceSets.main.output
from sourceSets.hdskins.output
from litemod
classifier "mc$minecraft.version-srg"
baseName "mod-${project.name.toLowerCase()}"
}
task skinZip(type: Zip) {
2018-07-09 00:58:20 +02:00
from fileTree('skins')
baseName 'Pony Skin Resources'
version 'v1'
}
reobf {
2018-07-09 00:58:20 +02:00
srgJar {
mappingType = 'SEARGE'
}
}
2016-01-15 08:59:50 +01:00
mixin {
2018-07-09 00:58:20 +02:00
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) {
2018-07-09 00:58:20 +02:00
from jar.archivePath
into file("$System.env.APPDATA/.minecraft/mods")
2015-12-13 09:30:27 +01:00
}