Files
spring-integration-samples/applications/cafe/cafe-si/pom.xml
Gunnar Hillert 3c9c91c847 INTSAMPLES-89 - Upgrade to Spring Integration 2.2 RC3
* Test samples
* Polish documentation
* Polish code

For reference see: https://jira.springsource.org/browse/INTSAMPLES-89
2012-11-28 17:08:51 -05:00

25 lines
974 B
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-si</artifactId>
<packaging>jar</packaging>
<name>Cafe - Pure Spring Integration</name>
<description>
This module implements the cafe sample using spring-integration components.
The channels that are used are in-memory channels and there is no distribution of
the processes (i.e., all of the processing happens within the same JVM and there
is no message broker). To see the cafe sample with a message broker to help distribute
the components, see the AMQP or the JMS sample.
</description>
</project>