]> juplo.de Git - demos/kafka/outbox/commitdiff
Preparing for the next version polling-outbox-3
authorKai Moritz <kai@juplo.de>
Sun, 16 May 2021 21:51:18 +0000 (23:51 +0200)
committerKai Moritz <kai@juplo.de>
Sun, 16 May 2021 21:51:18 +0000 (23:51 +0200)
Bumped only the version numbers for outbox-delivery and
polling-outbox-parent, because the other components are expected to stay
unchanged.

README.sh
delivery/pom.xml
docker-compose.yml
pom.xml

index bdf4ff67e7dbc6a183cde3bfc9809c49541b42b0..3d756ef32f9a4384dca5fafbc4fa7902868ff099 100755 (executable)
--- a/README.sh
+++ b/README.sh
@@ -5,7 +5,7 @@ then
   docker-compose down -v
   mvn clean
   docker image rm juplo/data-jdbc:polling-outbox-2
-  docker image rm juplo/outbox-delivery:polling-outbox-2
+  docker image rm juplo/outbox-delivery:polling-outbox-3-SNAPSHOT
   exit
 fi
 
@@ -13,7 +13,7 @@ docker-compose up -d zookeeper kafka
 
 if [[
   $(docker image ls -q juplo/data-jdbc:polling-outbox-2) == "" ||
-  $(docker image ls -q juplo/outbox-delivery:polling-outbox-2) == "" ||
+  $(docker image ls -q juplo/outbox-delivery:polling-outbox-3-SNAPSHOT) == "" ||
   "$1" = "build"
 ]]
 then
@@ -21,7 +21,7 @@ then
 else
   echo "Using image existing images:"
   docker image ls juplo/data-jdbc:polling-outbox-2
-  docker image ls juplo/outbox-delivery:polling-outbox-2
+  docker image ls juplo/outbox-delivery:polling-outbox-3-SNAPSHOT
 fi
 
 while ! [[ $(docker-compose exec kafka zookeeper-shell zookeeper:2181 ls /brokers/ids 2> /dev/null) =~ 1001 ]];
index 8af0eee33989d18a786a46ee5e1f7fd36cf487ee..58eee114901cb192c887e40c5b8beb5238738d33 100644 (file)
@@ -15,7 +15,7 @@
 
   <groupId>de.juplo.kafka.outbox</groupId>
   <artifactId>outbox-delivery</artifactId>
-  <version>polling-outbox-2</version>
+  <version>polling-outbox-3-SNAPSHOT</version>
   <name>Outbox-Delivery (Polling)</name>
   <description>Simple example-implementation of the Outbox-Pattern (polling variant)</description>
 
index 4784958b6ee708cff5a999da9ff9662359552ee9..8f0c3920971b13387804a72705462b6d3dc4008a 100644 (file)
@@ -39,7 +39,7 @@ services:
       - postgres
 
   outbox:
-    image: juplo/outbox-delivery:polling-outbox-2
+    image: juplo/outbox-delivery:polling-outbox-3-SNAPSHOT
     environment:
       spring.profiles.active: prod
       logging.level.de.juplo.kafka.outbox: DEBUG
diff --git a/pom.xml b/pom.xml
index d3e4618657263e07e87ba37b2ee3dea225889bc4..30bb9887bc9d7671a2348aa69eab290d1d22d43a 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -8,7 +8,7 @@
 
   <groupId>de.juplo.kafka.outbox</groupId>
   <artifactId>polling-outbox-parent</artifactId>
-  <version>polling-outbox-2</version>
+  <version>polling-outbox-3-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>polling-outbox-parent</name>
   <description>Simple example-implementation of the Polling-Outbox-Pattern</description>