Bugfix: Check for existence of a new transfer requires a remote-call
[demos/kafka/demos-kafka-payment-system-transfer] / pom.xml
diff --git a/pom.xml b/pom.xml
index 8c2c36b..f536f3d 100644 (file)
--- a/pom.xml
+++ b/pom.xml
 
   <groupId>de.juplo.kafka.payment</groupId>
   <artifactId>transfer</artifactId>
-  <version>1.0-SNAPSHOT</version>
+  <version>2.1-SNAPSHOT</version>
   <name>Transfer Service</name>
   <description>An MVP for the Transfer Service</description>
 
   <properties>
     <java.version>11</java.version>
     <confluent.version>6.2.0</confluent.version>
-    <kafka.version>2.8.0</kafka.version>
+    <kafka.version>2.7.1</kafka.version>
+    <docker-maven-plugin.version>0.33.0</docker-maven-plugin.version>
+    <spring-kafka-test.version>2.7.2</spring-kafka-test.version>
   </properties>
 
   <dependencies>
       <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-starter-web</artifactId>
     </dependency>
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-starter-webflux</artifactId>
+    </dependency>
     <dependency>
       <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-starter-validation</artifactId>
       <artifactId>spring-boot-starter-test</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.springframework.kafka</groupId>
+      <artifactId>spring-kafka-test</artifactId>
+      <version>${spring-kafka-test.version}</version>
+      <scope>test</scope>
+    </dependency>
 
   </dependencies>
 
           </excludes>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>io.fabric8</groupId>
+        <artifactId>docker-maven-plugin</artifactId>
+        <version>${docker-maven-plugin.version}</version>
+        <configuration>
+          <images>
+            <image>
+              <name>juplo/payment-service-demo--%a:%v</name>
+            </image>
+          </images>
+        </configuration>
+      </plugin>
     </plugins>
   </build>