Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This will download all dependencies and put the correct paths into the Eclipse .project file. Upon refreshing the project, you should now have code completion working.

Note

It appears that Eclipse has some problems with the default maven2 repository location ~/.m2/repository. One workaround is to create a symbolic link that does not contain leading dots and change the value of the M2_REPO Classpath variable to the new location.
Example:

Code Block
 ln -s ~/.m2 ~/m2 

and then change the value of "Preferences->Java->Build Path->Classpath Variables"

Eclipse plug-in

Plug-ins for Eclipse are available from the Maven2 homepage. We have tested the Q plug-in and can confirm it works with maven 2.0.7. Please follow the installation instructions on the web page for the plug-in.

...