On Wed, Feb 27, 2008 at 2:00 AM, David Siefert <
[EMAIL PROTECTED]> wrote:

> Hello,
>
> I am trying to evaluate Apache Camel and I am already having issues trying
> the example from the site.  I have a maven project with the dependency to
> camel 1.2.0, and most of the classes resolve, however for some reason
> org.apache.camel.component.jms is not a part of the JAR, so I can not load
> JmsComponent.
>
> Anybody else have this problem?
>
> C:\camel-sample\src\test\java\org\apache\activemq\camel\sample\CamelSampleTest.java:[17,38]
> package org.apache.camel.component.jms does not exist
> C:\camel-sample\src\test\java\org\apache\activemq\camel\sample\CamelSampleTest.java:[43,49]
> cannot find symbol
> symbol  : variable JmsComponent
> location: class org.apache.activemq.camel.sample.CamelSampleTest
> Thanks,
>
> David
>

Ok, I solved it.  Had to add the following to my dependency list:

  <dependency>
   <groupId>org.apache.camel</groupId>
   <artifactId>camel-jms</artifactId>
   <version>1.2.0</version>
  </dependency>
Thanks anyway! :)

-David

Reply via email to