MineLittlePony/build.gradle

58 lines
1.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
tweakClass = 'com.mumfrey.liteloader.launch.LiteLoaderTweaker'
replace '@VERSION@',project.version
2015-08-02 00:36:33 +02:00
}
2015-10-07 00:42:46 +02: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-08-02 00:36:33 +02:00
}
jar {
2015-10-07 00:42:46 +02:00
manifest.attributes.remove 'TweakClass'
2015-11-17 06:09:04 +01:00
extension 'litemod'
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
}