Csaba Koncz wrote:
Hello!
I am trying to migrate an existing multi-project build to Gradle (these are
Eclipse plugins with build.xmls generated by PDE).
My top level build.gradle now looks like this:
ant.javacSource='1.5'
ant.javacTarget='1.5'
subprojects {
ant.importBuild 'build.xml'
}
When I execute "gradle build.jars" the build fails because the javac
arguments are not passed to the subprojects.
Is there a way to mimic the inhertall="true" behaviour of the "ant" Ant
task?
Best regards,
Csaba
Hi Csaba,
you could try (untested):
allprojects {
ant.javacSource='1.5'
ant.javacTarget='1.5'
}
subprojects {
ant.importBuild 'build.xml'
}
Thomas
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email