Hi,
What is the code of camel jms maven dependency which I can add into my pom.xml file?
Thanks
Hi,
This library is used to work with the Apache activeMQ server which is one of the most popular open source JMS Server.
The Camel JMS is used to interface with the Apache ActiveMQ server. You can add the maven dependency in our project and then use the library in your Java program.
Here is the code which you can add into pom.xml file:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-sjms</artifactId> <version>3.2.0</version> </dependency>
The 3.2.0 is the current version at the time of this answer.
Thanks
Hi,
This is the dependency of version 3.1.0.
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-sjms</artifactId> <version>3.1.0</version> </dependency>
Thanks
Hi,
The dependency of camel-sjms version 3.0.1 is:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-sjms</artifactId> <version>3.0.1</version> </dependency>
Thanks
Hi,
If you want to use the old version then check this one:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-sjms</artifactId> <version>2.25.0</version> </dependency>
Above is dependency version 2.25.0.
Thanks
Ads