Adding KStream sample applications

Add sample for the canonical WordCount
Showing how to track group of products
Showing how to implement interactive queries

Fix #41

Update scst versions
Enhance kstream samples
This commit is contained in:
Soby Chacko
2017-09-11 16:33:42 -04:00
committed by Ilayaperumal Gopinathan
parent 30a0c1d734
commit a2fea3a188
38 changed files with 1716 additions and 3 deletions

22
kstream/pom.xml Normal file
View File

@@ -0,0 +1,22 @@
<?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>
<artifactId>spring-cloud-stream-sample-kstream-parent</artifactId>
<packaging>pom</packaging>
<name>spring-cloud-stream-sample-kstream-parent</name>
<description>Parent Project for KStream Samples</description>
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-samples</artifactId>
<version>1.2.0.BUILD-SNAPSHOT</version>
</parent>
<modules>
<module>kstream-word-count</module>
<module>kstream-product-tracker</module>
<module>kstream-interactive-query</module>
</modules>
</project>