blob: 3f0d2134fc76fa8f8bf6c0083f86a861964fc315 [file] [log] [blame]
Apache Ignite JMS 1.1 Module
----------------------------
Apache Ignite JMS 1.1 module provides a streamer to consume JMS queue and topic messages into
Apache Ignite caches.
Importing Apache Ignite JMS 1.1 Module In Maven Project
--------------------------------------------------------
If you are using Maven to manage dependencies of your project, you can add the JMS 1.1 module
dependency like this (replace '${ignite.version}' with actual Ignite version you are
interested in):
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
...
<dependencies>
...
<dependency>
<groupId>org.apache.ignite</groupId>
<artifactId>ignite-jms11</artifactId>
<version>${ignite.version}</version>
</dependency>
...
</dependencies>
...
</project>