Convert the vanilla applications that uses the Spring provided Scheam registry and Avro message converters. Provide 2 sets of the same applications - one for the Kafka binder and another for the Rabbit binder. The top level folder of each of these sets are named appropriately so that anyone who is interested in a particular binder can easilty cd to that directory and run the samples
20 lines
896 B
XML
20 lines
896 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>io.spring.cloud.stream.sample</groupId>
|
|
<artifactId>schema-registry-samples</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
<name>schema-registry-samples</name>
|
|
<description>Schema Registry Samples</description>
|
|
|
|
<modules>
|
|
<module>schema-registry-vanilla-kafka-binder</module>
|
|
<module>schema-registry-vanilla-rabbit-binder</module>
|
|
<module>schema-registry-confluent</module>
|
|
<module>schema-registry-confluent-avro-serializer</module>
|
|
<module>kafka-streams-schema-evolution</module>
|
|
</modules>
|
|
|
|
</project>
|