How to link project in eclipse

Viewed 37155

I have a java project and I want to develop it without replacing the source code from its place. I want to link my code to my workspace without replace physically?

4 Answers

For Maven based projects, following worked for me:

Make sure to have following checkbox checked

Project properties -> Java build path (tree-item) -> Libraries (tab) -> Maven Dependencies (tree-item) -> Edit (button) -> Maven Project Settings (link) -> Resolve dependencies from Workspace projects (checkbox)

Related