See ActiveMQ site to get started. You’ll need subversion, maven and of course eclipse before you begin. By default the maven repository is in your home directory, e.g., ~/.m2/repository.
Here are the steps:
svn co https://svn.apache.org/repos/asf/activemq/trunk activemq
cd activemq
mvn eclipse:eclipse
Now fire up Eclipse and import the root folder of the ActiveMQ source folder. This will create about a dozen projects. But the Eclipse build will fail due to the variable M2_REPO not being defined. Just get the Properties of one of these projects, go to the Java Build Path and Add a Variable. Define this variable to be the location of your maven repository. After you do this all of the errors will disappear, you’ll still get 1700 or so warnings. But you know that in a lot of projects warnings are intended to be ignored.
You’ll also need to get the activeio sources.svn co https://svn.apache.org/repos/asf/activemq/activeio/trunk activeioYou’ll need to import this project to Eclipse too (
activeio/activeio-core).
