Version des `spring-consumer` mit einer vollständigen Fehlerbehandlung
authorKai Moritz <kai@juplo.de>
Sat, 11 Jan 2025 16:10:02 +0000 (17:10 +0100)
committerKai Moritz <kai@juplo.de>
Fri, 24 Jan 2025 19:41:44 +0000 (20:41 +0100)
README.sh
build.gradle
docker/docker-compose.yml
pom.xml

index 392b237..fcf2322 100755 (executable)
--- a/README.sh
+++ b/README.sh
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-IMAGE=juplo/spring-consumer:1.1-deserialization-error-SNAPSHOT
+IMAGE=juplo/spring-consumer:1.1-error-handling-SNAPSHOT
 
 if [ "$1" = "cleanup" ]
 then
index 9df5cda..3df5a51 100644 (file)
@@ -8,7 +8,7 @@ plugins {
 }
 
 group = 'de.juplo.kafka'
-version = '1.1-deserialization-error-SNAPSHOT'
+version = '1.1-error-handling-SNAPSHOT'
 
 java {
        toolchain {
index 56003f7..e23f799 100644 (file)
@@ -150,14 +150,14 @@ services:
       juplo.consumer.topic: test
 
   peter:
-    image: juplo/spring-consumer:1.1-deserialization-error-SNAPSHOT
+    image: juplo/spring-consumer:1.1-error-handling-SNAPSHOT
     environment:
       juplo.bootstrap-server: kafka:9092
       juplo.client-id: peter
       juplo.consumer.topic: test
 
   ute:
-    image: juplo/spring-consumer:1.1-deserialization-error-SNAPSHOT
+    image: juplo/spring-consumer:1.1-error-handling-SNAPSHOT
     environment:
       juplo.bootstrap-server: kafka:9092
       juplo.client-id: ute
diff --git a/pom.xml b/pom.xml
index b5cb106..6bf1dfe 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -15,7 +15,7 @@
   <artifactId>spring-consumer</artifactId>
   <name>Spring Consumer</name>
   <description>Super Simple Consumer-Group, that is implemented as Spring-Boot application and configured by Spring Kafka</description>
-  <version>1.1-deserialization-error-SNAPSHOT</version>
+  <version>1.1-error-handling-SNAPSHOT</version>
 
   <properties>
     <java.version>21</java.version>