When I updated to gradle1.11; see that the project dependencies being generated is different, and I think this causes eclipsePlugin to generate the .classpath.
I am not aware of any change between 1.10 and 1.11 that would cause this (yet). Can you attach ‘build.gradle’ files where we can see what going on (simplified test case would be best). From your outputs I am wondering why there seems to be circular dependency
‘’’ :src:modules:discovery:container:common ->
project :src:common:container:messaging ->
project :src:common:common ->
project :src:modules:discovery:container:common ‘’’ where previously artifacts like com.canopi.cis:messaging:1406 were used.
Another observation I see is that when I commented out compile project(":src:common:common") it worked. still trying to find whether there is a cyclic dependency. (couldnt find anything till now)
Admittedly there is a bug where two projects with the same name and group confuses dependency resolution. Before this gets fixed you can modify your setup to use different group or name for these projects to avoid the problem.