MineLittlePony/build.gradle

97 lines
2.4 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'
}
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
}
2018-06-10 03:53:28 +02:00
apply plugin: 'net.minecraftforge.gradle.forge'
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 {
version = "1.12.2-14.23.4.2705"
mappings = 'snapshot_20180606'
runDir = 'run'
replace '@VERSION@', project.version
clientJvmArgs += '-Dfml.coreMod.load=com.minelittlepony.core.MLPLoadingPlugin'
2015-08-02 00:36:33 +02:00
}
2015-12-09 22:05:21 +01:00
sourceSets {
hdskins {
compileClasspath += main.compileClasspath
ext.refMap = 'hdskins.mixin.refmap.json'
}
main {
compileClasspath += hdskins.output
ext.refMap = 'minelp.mixin.refmap.json'
}
}
2018-06-10 03:53:28 +02:00
repositories {
maven {
url = 'https://repo.spongepowered.org/maven'
}
2018-06-10 03:53:28 +02:00
}
dependencies {
compile('org.spongepowered:mixin:0.7.8-SNAPSHOT') {transitive = false}
2015-11-17 06:09:04 +01:00
}
2018-06-10 03:53:28 +02:00
//litemod.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'''.stripIndent()
// description.hdskinsmod = '''\
// Separate skin server for Mine Little Pony that also supports HD skins.
// Access via button on the main menu.'''.stripIndent()
2018-06-10 03:53:28 +02:00
//
// mixinConfigs += [
// 'minelp.mixin.json',
// 'hdskins.mixin.json'
// ]
2018-06-10 03:53:28 +02:00
//}
2015-08-02 00:36:33 +02:00
jar {
from sourceSets.hdskins.output
manifest.attributes FMLCorePlugin: 'com.minelittlepony.core.MLPLoadingPlugin',
FMLCorePluginContainsFMLMod: 'true'
2015-12-08 22:53:08 +01:00
}
sourceJar {
// add hdskins sources
from sourceSets.hdskins.allSource
}
task skinZip(type: Zip) {
from fileTree('skins')
baseName 'Pony Skin Resources'
version 'v1'
}
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
into file("$System.env.APPDATA/.minecraft/mods")
2015-12-13 09:30:27 +01:00
}