I am using Eclipse 3.5, Maven 2.0.9 for my multi module Java project in one single workspace.
My plugin declaration is below:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.7</version>
<configuration>
<ajdtVersion>2.0</ajdtVersion>
<wtpversion>2.0</wtpversion>
</configuration>
</plugin>
If my local repository is empty, doing an eclipse clean on my project will bring in the correct dependencies and resolve all compile errors.
Once in awhile, a module is not able to see classes in another module that it is dependent on. Doing a clean or local installation won't resolve the compilation error. If I empty the local repo and do the eclipse clean again, the previously unresolved errors are fixed.
This is getting annoying. Anybody know whats wrong?