Reputation: 103
In module.xml file in Jboss AS 7, I have a dependency
<dependencies>
<module name="org.apache.camel.components"/>
</dependencies>
I dont know what are the camel jar files I must include in the folder path org/apache/camel/components/main/ .
Kindly guide me
Upvotes: 0
Views: 407
Reputation: 21015
to start, you need camel-core...possibly others depending on which components you need...
download here: http://mvnrepository.com/artifact/org.apache.camel/camel-core
or if you are using Maven, just add this dependency to your project's pom.xml...
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<version>2.10.1</version>
</dependency>
Upvotes: 1