Since we're on a major migration process of this website, some component documents here are out of sync right now. In the meantime you may want to look at the early version of the new website
https://camel.apache.org/staging/
We would very much like to receive any feedback on the new site, please join the discussion on the Camel user mailing list.
What jars do I need?Camel is designed to be small lightweight and extremely modular so that you only pay for what you use. The core of camel, camel-core.jar is small and has minimal dependencies. On Java 6 camel-core.jar only depends on
On Java 5 camel-core.jar depends also on activation.jar and a JAXB2 implementation which typically involves jaxb-api.jar, jaxb-impl.jar and a StAX API which may be stax-api.jar and *woodstox.jar Using SpringIf you wish to work with Spring, you will also need camel-spring.jar along with the spring.jar or the individual spring jars if you prefer. Other componentsFor other components you may want to look at the maven reports to see the exact dependencies of individual modules. For example to work with JMS you will require the JMS API jar together with camel-jms.jar and your JMS provider of choice such as the ActiveMQ required jars |