I use maven version range for one of the dependency in project A,
<dependency>
<groupId>com.test</groupId>
<artifactId>B</artifactId>
<version>[0.2,)</version>
</dependency>
In Eclipse I also have project com.test.B in the same Workspace as project A. I want to get version 0.2.5 which is the latest version in my remote repo, but in Eclipse it reference to 0.2.6-SNAPSHOT which is my current development version and I haven't upload to remote repo yet, so I got
'Maven dependencies' references non existing library
error in Eclipse. How can I make Eclipse reference to the latest version in remote repo instead of current version in workspace? I tried Disable workspace resolution, didn't work. delete project B from the workspace do the trick, but I need project B.