I've some problems developing with jackrabbit in Eclipse. Where can I find
some info about this?
There are many ways to do this, but I'm pretty happy with the
m2eclipse plugin from http://m2eclipse.sonatype.org/.
The plugin installs cleanly from the update site at
http://m2eclipse.sonatype.org/update/, and after that I can use File >
Import... > Maven Projects and point the dialog to the root of my
checkout. The importer will correctly find and set up all the
components as separate projects in Eclipse.
I use a similar approach but without the m2eclipse plugin. Rather I use
Maven from the command line:
mvn clean install
mvn eclipse:eclipse
and then import the generated eclipse project files with Eclipse.
This approach works generally quite well.
Michael