Files
spring-cloud-stream-samples/schema-registry-samples/pom.xml
Soby Chacko ff136d56c2 Schema registry sample upgrade - Iteration 1
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
2019-09-17 20:17:27 -04:00

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>