- Added transactional and some more required properties - Setting read_commited in consumer - Added license and author tag - Added more fleshed out readme - Added alternate failure and removed unique index - Update spring boot starter parent to 2.1.0.BUILD-SNAPSHOT
17 lines
773 B
XML
17 lines
773 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>transaction-samples</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<name>transactions-samples</name>
|
|
<description>Collection of Spring Cloud Stream Transaction Samples</description>
|
|
|
|
<modules>
|
|
<module>transaction-http-source</module>
|
|
<module>transaction-spring-data-processor</module>
|
|
<module>transaction-logger-sink</module>
|
|
</modules>
|
|
</project>
|