* Test samples * Polish documentation * Polish code For reference see: https://jira.springsource.org/browse/INTSAMPLES-89
36 lines
1.2 KiB
XML
36 lines
1.2 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>
|
|
<artifactId>cafe</artifactId>
|
|
<groupId>org.springframework.integration.samples</groupId>
|
|
<version>2.2.0.BUILD-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>cafe-amqp</artifactId>
|
|
|
|
<name>Cafe - With AMQP Message Broker</name>
|
|
<description>
|
|
This module implements the cafe sample using spring-integration components backed
|
|
by an AMQP message broker for message persistence and component distribution. This
|
|
sample uses RabbitMQ broker, but any AMQP message broker can be used. For an example
|
|
using JMS, see the JMS implementation of the cafe sample.
|
|
</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${project.parent.groupId}</groupId>
|
|
<artifactId>cafe-si</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-amqp</artifactId>
|
|
<version>${spring.integration.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|