splitter: 1.0.0-spring-integration-xml - defined the `DirectChannel` in XML
[demos/kafka/wordcount] / pom.xml
diff --git a/pom.xml b/pom.xml
index 6dfd615..d201639 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -5,15 +5,16 @@
        <parent>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-parent</artifactId>
-               <version>2.5.4</version>
+               <version>2.7.1</version>
                <relativePath/> <!-- lookup parent from repository -->
        </parent>
        <groupId>de.juplo.kafka.wordcount</groupId>
-       <artifactId>recorder</artifactId>
-       <version>0.0.1-SNAPSHOT</version>
-       <name>Wordcount-Recorder</name>
-       <description>Recorder-service of the multi-user wordcount-example</description>
+       <artifactId>splitter</artifactId>
+       <version>1.0.0-spring-integration</version>
+       <name>Wordcount-Splitter</name>
+       <description>A version of the stream-processor for the multi-user wordcount-example, that splits the sentences up into single words and is implemented based on Spring Integration</description>
        <properties>
+               <docker-maven-plugin.version>0.33.0</docker-maven-plugin.version>
                <java.version>11</java.version>
        </properties>
        <dependencies>
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-starter-web</artifactId>
                </dependency>
+               <dependency>
+                       <groupId>org.springframework.integration</groupId>
+                       <artifactId>spring-integration-kafka</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.hibernate.validator</groupId>
+                       <artifactId>hibernate-validator</artifactId>
+               </dependency>
 
                <dependency>
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-starter-test</artifactId>
                        <scope>test</scope>
                </dependency>
+               <dependency>
+                       <groupId>org.springframework.kafka</groupId>
+                       <artifactId>spring-kafka-test</artifactId>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.assertj</groupId>
+                       <artifactId>assertj-core</artifactId>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.awaitility</groupId>
+                       <artifactId>awaitility</artifactId>
+                       <scope>test</scope>
+               </dependency>
        </dependencies>
 
        <build>
                                        </excludes>
                                </configuration>
                        </plugin>
+                       <plugin>
+                               <groupId>io.fabric8</groupId>
+                               <artifactId>docker-maven-plugin</artifactId>
+                               <version>${docker-maven-plugin.version}</version>
+                               <configuration>
+                                       <images>
+                                               <image>
+                                                       <name>juplo/wordcount--%a:%v</name>
+                                               </image>
+                                       </images>
+                               </configuration>
+                       </plugin>
                </plugins>
        </build>