Ramya
Ramya

Reputation: 103

creating camel module for jboss AS 7

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

Answers (1)

Ben ODay
Ben ODay

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

Related Questions