I have a maven project, that I\'m working on Eclipse.
I use maven eclipse:eclipse to generate the classpath, but ... it NEVER adds the classpath on the eclipse proj
By default the mvn installs are not imported into eclipse automatically. So, after you run mvn install from the command prompt. Run the following command:
mvn eclipse:eclipse
This will import all the jars into your eclipse project and will update the classpath as well.
You need to execute the above command the very first time you add a new dependency to your POM and do an mvn compile or install.