Files
spring-cloud-stream-samples/schema-registry-samples/pom.xml
Soby Chacko 2adec97cd0 Kafka Streams schema evolution sample
Sample for demonstrating schema evolution using kafka and kafka streams
binders and Confluent Schema Registry server.

Resolves #85
2018-08-23 17:02:42 -04:00

18 lines
752 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>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</module>
<module>schema-registry-confluent</module>
<module>kafka-streams-schema-evolution</module>
</modules>
</project>