Hi All,
I've got a question about how maven works when there is a newer remote library than a locally installed artefact. Say I've got project A and project B. B depends on A. - I build A and install it, to test that B will work with the API changes in A. - If I build B it will use my locally built copy of A, everything is fine UNLESS: The continuous integration tool builds a new copy of A after I build A and install locally. When I come to build B it pulls in the remote copy of A and my local change in A is ignored. How can I stop this happening as it does not give a predicatable build? I really need to tell B to update its dependencies except for A. Thanks in advance, Rich
