I have a situation where I have 3 projects A, B and C. B depends on A and C depends on B. In B's ivy.xml I specify that it is dependent on project A rev 1.0.+ if I update A to 1.0.2 and resolve B's dependencies I see that it correctly depends on A rev 1.0.2. If I resolve C it does not correctly show that it is dependent on 1.0.2 and instead keeps the old version of A (namely 1.0.1). I assume that this is because in the ivy.xml that is published says the following
<dependency org="com.mycompany" name="A" rev="1.0.1" revConstraint="1.0.+"/> Is there a way to make project C pull the latest version of project A without making C dependent on A?
