Hi,
I use gradle in a multiproject structure and upload all artifacts to a nexus repository during the build. To be able to build each single project separately they all have snapshot dependencies. For the nightly build another build script is used which adds task dependencies to the projects so the projects are build in the right order.
let’s say we have two projects; A and B, and B is dependent on A. When importing the projects into eclipse the import should be possible in two ways:
A should be import and get all it’s dependencies from Nexus.
B should be import and get all it’s dependencies from Nexus (including the dependency to A)
A should be import and get all it’s dependencies from Nexus.
B should be import but get the dependency to A from within Eclipse rather than from Nexus.
Is this possible? And how?
Cheers Julian