Seeing what happens with two modules

This commit is contained in:
Calclavia 2014-02-26 16:26:14 +08:00
parent d483572fd8
commit 4cdd8eb826
2 changed files with 5 additions and 4 deletions

View file

@ -23,8 +23,8 @@ buildProps.withReader {
ext.config = new ConfigSlurper().parse prop ext.config = new ConfigSlurper().parse prop
} }
group = "icbm" group = "resonantinduction"
archivesBaseName = "ICBM" archivesBaseName = "Resonant-Induction"
minecraft { minecraft {
version = "${rootProject.config.version.minecraft}-${rootProject.config.version.forge}" version = "${rootProject.config.version.minecraft}-${rootProject.config.version.forge}"
@ -92,7 +92,7 @@ allprojects {
} }
subprojects { subprojects {
archivesBaseName = "ICBM" archivesBaseName = "Resonant-Induction"
dependencies { dependencies {
compile rootProject compile rootProject
@ -117,7 +117,7 @@ task copyBuildXml(type: Copy) {
task apiZip(type: Zip) { task apiZip(type: Zip) {
classifier = 'api' classifier = 'api'
from sourceSets*.allSource from sourceSets*.allSource
include 'icbm/api/**' include 'resonantinduction/api/**'
destinationDir = file 'output' destinationDir = file 'output'
} }

View file

@ -1 +1,2 @@
rootProject.name = 'core' rootProject.name = 'core'
include 'archaic'