Resolves https://github.com/spring-cloud/spring-cloud-stream-samples/issues/65 Polishing - PR Comments - add docker-compose - change runner to process multiple messages
19 lines
836 B
XML
19 lines
836 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>
|
|
<groupId>spring.cloud.stream.samples</groupId>
|
|
<artifactId>processor-samples</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<name>processor-samples</name>
|
|
<description>Collection of Spring Cloud Stream Processor Samples</description>
|
|
|
|
<modules>
|
|
<module>polled-consumer</module>
|
|
<module>reactive-processor</module>
|
|
<module>sensor-average-reactive</module>
|
|
<module>streamlistener-basic</module>
|
|
<module>uppercase-transformer</module>
|
|
</modules>
|
|
</project>
|