Another try to fix the issue

This commit is contained in:
Robert S 2014-04-26 16:41:00 -04:00
parent 57bf1043f3
commit 4c9b66fc6a

View file

@ -100,7 +100,6 @@ allprojects {
subprojects {
archivesBaseName = "${System.getenv().JOB_NAME}"
sourceSets.main.compileClassPath += rootProject.sourceSets.api.output
dependencies {
compile rootProject
}
@ -128,6 +127,9 @@ task apiZip(type: Zip) {
destinationDir = file 'output'
}
subprojects {
sourceSets.main.compileClassPath += rootProject.sourceSets.api.output
}
artifacts {
archives apiZip
}