48 lines
1.6 KiB
XML
48 lines
1.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.springframework.integration.samples</groupId>
|
|
<artifactId>cafe</artifactId>
|
|
<version>3.0.8.RELEASE</version>
|
|
</parent>
|
|
|
|
<artifactId>cafe-jms</artifactId>
|
|
<name>Cafe - With JMS Message Broker</name>
|
|
|
|
<description>
|
|
This module implements the cafe sample using spring-integration components backed
|
|
by a JMS broker for persistent messaging as well as component distribution. This
|
|
sample uses ActiveMQ as the JMS broker, but any JMS-compliant broker can be
|
|
used. For an example using AMQP, see the AMQP implementation of the cafe sample.
|
|
</description>
|
|
|
|
<properties>
|
|
<activemq.version>5.6.0</activemq.version>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.activemq</groupId>
|
|
<artifactId>activemq-all</artifactId>
|
|
<version>${activemq.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.xbean</groupId>
|
|
<artifactId>xbean-spring</artifactId>
|
|
<version>3.11.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-jms</artifactId>
|
|
<version>${spring.integration.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.parent.groupId}</groupId>
|
|
<artifactId>cafe-si</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|