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 bdf4ff6..3d756ef 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 8af0eee..58eee11 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 4784958..8f0c392 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 d3e4618..30bb988 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>