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-11-17 06:19:58 +01:00
|
|
|
project('common') {
|
2015-11-20 06:53:39 +01:00
|
|
|
apply plugin: 'net.minecraftforge.gradle.tweaker-client'
|
|
|
|
minecraft {
|
|
|
|
version = rootProject.minecraft.version
|
|
|
|
mappings = rootProject.minecraft.mappings
|
|
|
|
runDir = rootProject.minecraft.runDir
|
|
|
|
tweakClass = rootProject.minecraft.tweakClass
|
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 {
|
|
|
|
provided project(':common')
|
|
|
|
}
|
|
|
|
}
|
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:19:58 +01:00
|
|
|
compile project('common')
|
2015-11-17 06:09:04 +01:00
|
|
|
deobfProvided 'com.mumfrey:liteloader:1.8-SNAPSHOT:srgnames'
|
|
|
|
provided voxellib
|
2015-08-02 00:36:33 +02:00
|
|
|
}
|
|
|
|
jar {
|
2015-10-07 00:42:46 +02:00
|
|
|
manifest.attributes.remove 'TweakClass'
|
2015-11-17 06:19:58 +01:00
|
|
|
|
2015-11-17 06:09:04 +01:00
|
|
|
extension 'litemod'
|
2015-11-17 06:19:58 +01:00
|
|
|
from project('common').sourceSets.main.output
|
|
|
|
from project('forge').sourceSets.main.output
|
2015-08-02 00:36:33 +02:00
|
|
|
}
|
2015-11-17 06:09:04 +01:00
|
|
|
task standaloneJar(type: Jar, dependsOn: [{voxellib.build}, reobfJar]) {
|
|
|
|
extension 'litemod'
|
|
|
|
from zipTree(jar.archivePath)
|
|
|
|
|
|
|
|
// voxellib
|
|
|
|
from {voxellib.jar.archivePath}
|
|
|
|
|
2015-08-02 00:36:33 +02:00
|
|
|
classifier 'standalone'
|
|
|
|
}
|
|
|
|
artifacts {
|
|
|
|
archives standaloneJar
|
|
|
|
}
|