MineLittlePony/build.gradle

95 lines
2 KiB
Groovy
Raw Normal View History

2015-10-07 00:42:46 +02:00
plugins {
2015-11-17 06:09:04 +01:00
id 'net.minecraftforge.gradle.tweaker-client' version '2.0.2'
2015-08-02 00:36:33 +02:00
}
2015-11-17 06:09:04 +01:00
ext.voxellib = project ':voxellib'
ext.revision = 186
2015-08-02 00:36:33 +02:00
2015-11-17 06:09:04 +01:00
archivesBaseName = "MineLittlePony"
group = 'com.brohoof.minelp'
version = '1.8'
2015-08-02 00:36:33 +02:00
minecraft {
version = "1.8"
2015-11-17 06:09:04 +01:00
mappings = 'snapshot_20151027'
2015-10-07 00:42:46 +02:00
runDir = 'run'
2015-11-17 06:09:04 +01:00
replace '@VERSION@',project.version
2015-11-20 06:53:39 +01:00
tweakClass = 'com.mumfrey.liteloader.launch.LiteLoaderTweaker'
clientJvmArgs += '-Dmcpenv=true'
2015-08-02 00:36:33 +02:00
}
2015-12-09 22:05:21 +01:00
sourceSets {
def deps = [
configurations.forgeGradleMcDeps,
configurations.forgeGradleMc,
configurations.provided
]
common {
compileClasspath += files deps
}
hdskins {
compileClasspath += files deps
}
}
2015-11-17 06:19:58 +01:00
project('forge') {
apply plugin: 'net.minecraftforge.gradle.forge'
minecraft {
version = '1.8-11.14.3.1543'
mappings = rootProject.minecraft.mappings
2015-11-20 06:53:39 +01:00
runDir = rootProject.minecraft.runDir
2015-11-17 06:19:58 +01:00
replace '@VERSION@',project.version
}
dependencies {
2015-12-08 22:53:08 +01:00
provided rootProject
2015-11-17 06:19:58 +01:00
}
}
2015-11-17 06:09:04 +01: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'
}
}
2015-10-07 00:42:46 +02:00
repositories.flatDir {
2015-11-17 06:09:04 +01:00
dir 'liteloader'
2015-08-02 00:36:33 +02:00
}
dependencies {
2015-11-17 06:09:04 +01:00
deobfProvided 'com.mumfrey:liteloader:1.8-SNAPSHOT:srgnames'
provided voxellib
2015-12-09 22:05:21 +01:00
compile sourceSets.common.output
compile sourceSets.hdskins.output
hdskinsCompile sourceSets.common.output
2015-08-02 00:36:33 +02:00
}
jar {
2015-10-07 00:42:46 +02:00
manifest.attributes.remove 'TweakClass'
2015-08-02 00:36:33 +02:00
}
2015-12-08 22:53:08 +01:00
task standaloneJar(type: Jar, dependsOn: [{voxellib.reobfObfJar}, {project('forge').compileJava}]) {
2015-11-17 06:09:04 +01:00
extension 'litemod'
2015-12-09 22:05:21 +01:00
from sourceSets*.output
2015-12-08 22:53:08 +01:00
from {project('forge').sourceSets.main.output}
2015-11-17 06:09:04 +01:00
// voxellib
2015-12-08 22:53:08 +01:00
from {voxellib.obfJar.archivePath}
2015-11-17 06:09:04 +01:00
2015-08-02 00:36:33 +02:00
classifier 'standalone'
}
artifacts {
archives standaloneJar
}
2015-12-08 22:53:08 +01:00
reobf{
jar.task.enabled = false
standaloneJar{}
}
2015-12-13 09:30:27 +01:00
task installMod(type: Copy, dependsOn: build) {
from standaloneJar.archivePath
into file("$System.env.APPDATA/.minecraft/mods")
}