Hi,
I was wondering why the eclipse plugin uses the result of resolving the testRuntime configuration. By resolving the configuration the plugin also adds dependencies that are actually dependencies of projects I am referencing. Consider the following:

Proj1
dependenciens {
   compile name: "lib1"
   compile project('proj2')
}

proj2
dependencies {
   compile name: "lib2"
   compile name: "lib3"
}

This will result in gradle creating a classpath file for proj1 containing lib1,lib2 and lib3 as dependencies. This is not needed, as lib2 and lib3 should be added as dependencies for proj2. Proj1 should imho just reference proj2.
Is there something I am missing or any special reason why this is done?

Thomas

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

   http://xircles.codehaus.org/manage_email


Reply via email to