hi there,
We're actually refactoring the griffon build to a multiproject build. At the moment we avoid resolving transitive dependencies automatically using the transitive flag. In the dist task of the rootProject I have a snippet like this:

-------------------
dependencies{
    runtime project(":rt")
    runtime project(":cli")
    runtime project(":scripts")
}

task dist(type:Zip){
    into('libs') {
        from configurations.runtime
    }
}
-------------------

but when executing "dist" the dependencies of project cli are calculated transitive again. It seems that gradle does not respect the "transitive = false" flag of the configurations in the submodule "cli".
Is this intended behaviour or a bug?

regards,
René

--
-----------------------
regards René

rene groeschke
http://www.breskeby.com
@breskeby


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

   http://xircles.codehaus.org/manage_email


Reply via email to