mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-22 12:37:59 +01:00
merge common with root
This commit is contained in:
parent
2bb8f7f8ce
commit
903cb3a5eb
5 changed files with 21 additions and 20 deletions
27
build.gradle
27
build.gradle
|
@ -16,15 +16,6 @@ minecraft {
|
|||
tweakClass = 'com.mumfrey.liteloader.launch.LiteLoaderTweaker'
|
||||
clientJvmArgs += '-Dmcpenv=true'
|
||||
}
|
||||
project('common') {
|
||||
apply plugin: 'net.minecraftforge.gradle.tweaker-client'
|
||||
minecraft {
|
||||
version = rootProject.minecraft.version
|
||||
mappings = rootProject.minecraft.mappings
|
||||
runDir = rootProject.minecraft.runDir
|
||||
tweakClass = rootProject.minecraft.tweakClass
|
||||
}
|
||||
}
|
||||
project('forge') {
|
||||
apply plugin: 'net.minecraftforge.gradle.forge'
|
||||
minecraft {
|
||||
|
@ -34,7 +25,7 @@ project('forge') {
|
|||
replace '@VERSION@',project.version
|
||||
}
|
||||
dependencies {
|
||||
provided project(':common')
|
||||
provided rootProject
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -57,26 +48,26 @@ repositories.flatDir {
|
|||
dir 'liteloader'
|
||||
}
|
||||
dependencies {
|
||||
compile project('common')
|
||||
deobfProvided 'com.mumfrey:liteloader:1.8-SNAPSHOT:srgnames'
|
||||
provided voxellib
|
||||
}
|
||||
jar {
|
||||
manifest.attributes.remove 'TweakClass'
|
||||
|
||||
extension 'litemod'
|
||||
from project('common').sourceSets.main.output
|
||||
from project('forge').sourceSets.main.output
|
||||
}
|
||||
task standaloneJar(type: Jar, dependsOn: [{voxellib.build}, reobfJar]) {
|
||||
task standaloneJar(type: Jar, dependsOn: [{voxellib.reobfObfJar}, {project('forge').compileJava}]) {
|
||||
extension 'litemod'
|
||||
from zipTree(jar.archivePath)
|
||||
from sourceSets.main.output
|
||||
from {project('forge').sourceSets.main.output}
|
||||
|
||||
// voxellib
|
||||
from {voxellib.jar.archivePath}
|
||||
from {voxellib.obfJar.archivePath}
|
||||
|
||||
classifier 'standalone'
|
||||
}
|
||||
artifacts {
|
||||
archives standaloneJar
|
||||
}
|
||||
reobf{
|
||||
jar.task.enabled = false
|
||||
standaloneJar{}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
rootProject.name = 'MineLittlePony'
|
||||
|
||||
include 'voxellib', 'common', 'forge'
|
||||
include 'voxellib', 'forge'
|
||||
|
|
|
@ -15,4 +15,14 @@ repositories.flatDir {
|
|||
dependencies {
|
||||
deobfCompile 'com.mumfrey:liteloader:1.8-SNAPSHOT:srgnames'
|
||||
}
|
||||
jar.manifest.attributes.remove 'TweakClass'
|
||||
jar {
|
||||
manifest.attributes.remove 'TweakClass'
|
||||
classifier 'dev'
|
||||
}
|
||||
task obfJar(type:Jar) {
|
||||
from sourceSets.main.output
|
||||
}
|
||||
reobf {
|
||||
jar.task.enabled = false
|
||||
obfJar {}
|
||||
}
|
Loading…
Reference in a new issue