SM-2289: Remove ActiveMQ fix in quickstart guide from SM-2269
         Thanks to Wim Verreydt for the pull request!
         This closes #3

git-svn-id: https://svn.apache.org/repos/asf/servicemix/documentation/trunk@1597933 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/webapp/quickstart/activemq.conf b/src/main/webapp/quickstart/activemq.conf
index 670f3f4..331fa70 100644
--- a/src/main/webapp/quickstart/activemq.conf
+++ b/src/main/webapp/quickstart/activemq.conf
@@ -6,14 +6,6 @@
 
 In this scenario, we also want to move files between directories.  Instead of logging the move directly, we are going to send an event JMS message onto a queue.  Afterwards, we will create a second Camel route to receive the events and log them.
 
-h2. Before we start
-
-First, we have to install an optional feature to allow Camel send and receive JMS messages.  We'll talk about optional features a bit more in the next page of this quickstart guide, but for now, just run the following command in the console.
-
-{pygmentize:lang=text}
-karaf@root> features:install camel-jms
-{pygmentize}
-
 h2. Moving files and sending event messages
 The first Blueprint XML file we'll create contains a Camel route that moves the files from {{activemq/input}} to the {{activemq/output}} directory.  Afterwards, it will generate an event message and send that to an ActiveMQ queue called {{events}}.
 
@@ -39,13 +31,6 @@
         <to uri="activemq://events" />
       </route>
     </camelContext>
-
-    <bean id="activemq" class="org.apache.activemq.camel.component.ActiveMQComponent">
-        <property name="brokerURL" value="tcp://localhost:61616"/>
-    	<property name="userName" value="smx"/>
-    	<property name="password" value="smx"/>
-    </bean>
-
 </blueprint>
 {pygmentize}
 
@@ -69,13 +54,6 @@
         <to uri="log:events"/>
       </route>
     </camelContext>
-
-    <bean id="activemq" class="org.apache.activemq.camel.component.ActiveMQComponent">
-        <property name="brokerURL" value="tcp://localhost:61616"/>
-    	<property name="userName" value="smx"/>
-    	<property name="password" value="smx"/>
-    </bean>
-
 </blueprint>
 {pygmentize}