From 1d0ef52e96fd247e29c3cc99ecd66a71a61c346c Mon Sep 17 00:00:00 2001 From: Michael Schnell Date: Tue, 9 Jan 2024 16:03:04 +0100 Subject: [PATCH] Prepared next iteration --- aggregates/pom.xml | 4 ++-- pom.xml | 4 ++-- quarkus/command/README.md | 2 +- quarkus/command/pom.xml | 6 +++--- quarkus/pom.xml | 2 +- quarkus/query/README.md | 2 +- quarkus/query/pom.xml | 6 +++--- quarkus/shared/pom.xml | 4 ++-- shared/pom.xml | 2 +- spring-boot/command/pom.xml | 8 ++++---- spring-boot/pom.xml | 2 +- spring-boot/query/pom.xml | 6 +++--- spring-boot/shared/pom.xml | 4 ++-- 13 files changed, 26 insertions(+), 26 deletions(-) diff --git a/aggregates/pom.xml b/aggregates/pom.xml index 45bfdd6..44e0b9c 100644 --- a/aggregates/pom.xml +++ b/aggregates/pom.xml @@ -7,7 +7,7 @@ org.fuin.cqrs4j.example cqrs4j-example-root - 0.4.0 + 0.5.0-SNAPSHOT ../pom.xml @@ -23,7 +23,7 @@ org.fuin.cqrs4j.example cqrs4j-example-shared - 0.4.0 + 0.5.0-SNAPSHOT diff --git a/pom.xml b/pom.xml index 3efa718..6bd99b6 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.fuin.cqrs4j.example cqrs4j-example-root - 0.4.0 + 0.5.0-SNAPSHOT pom @@ -86,7 +86,7 @@ org.fuin ext4logback - 0.4.0 + 0.5.0-SNAPSHOT diff --git a/quarkus/command/README.md b/quarkus/command/README.md index e8186e8..d5b7342 100644 --- a/quarkus/command/README.md +++ b/quarkus/command/README.md @@ -29,7 +29,7 @@ Make sure you installed everything as described [here](../../../../). ``` 4. Run the microservice ``` - ./target/cqrs4j-quarkus-example-command-0.4.0-runner \ + ./target/cqrs4j-quarkus-example-command-0.5.0-SNAPSHOT-runner \ -Djava.library.path=$GRAALVM_HOME/jre/lib/amd64 \ -Djavax.net.ssl.trustStore=$GRAALVM_HOME/jre/lib/security/cacerts ``` diff --git a/quarkus/command/pom.xml b/quarkus/command/pom.xml index 5297762..f5be5a8 100644 --- a/quarkus/command/pom.xml +++ b/quarkus/command/pom.xml @@ -9,7 +9,7 @@ org.fuin.cqrs4j.example.quarkus cqrs4j-quarkus-example-root - 0.4.0 + 0.5.0-SNAPSHOT ../pom.xml @@ -57,13 +57,13 @@ org.fuin.cqrs4j.example cqrs4j-example-aggregates - 0.4.0 + 0.5.0-SNAPSHOT org.fuin.cqrs4j.example.quarkus cqrs4j-quarkus-example-shared - 0.4.0 + 0.5.0-SNAPSHOT diff --git a/quarkus/pom.xml b/quarkus/pom.xml index 98e3d9b..8698647 100644 --- a/quarkus/pom.xml +++ b/quarkus/pom.xml @@ -7,7 +7,7 @@ org.fuin.cqrs4j.example cqrs4j-example-root - 0.4.0 + 0.5.0-SNAPSHOT ../pom.xml diff --git a/quarkus/query/README.md b/quarkus/query/README.md index 3b6adf0..a8a4d3c 100644 --- a/quarkus/query/README.md +++ b/quarkus/query/README.md @@ -35,7 +35,7 @@ In case you want to run the integration test inside your IDE (Eclipse or other), ``` 4. Run the microservice ``` - ./target/cqrs4j-quarkus-example-query-0.4.0-runner \ + ./target/cqrs4j-quarkus-example-query-0.5.0-SNAPSHOT-runner \ -Djava.library.path=$GRAALVM_HOME/jre/lib/amd64 \ -Djavax.net.ssl.trustStore=$GRAALVM_HOME/jre/lib/security/cacerts ``` diff --git a/quarkus/query/pom.xml b/quarkus/query/pom.xml index 20ec118..6ee9338 100644 --- a/quarkus/query/pom.xml +++ b/quarkus/query/pom.xml @@ -9,7 +9,7 @@ org.fuin.cqrs4j.example.quarkus cqrs4j-quarkus-example-root - 0.4.0 + 0.5.0-SNAPSHOT ../pom.xml @@ -57,13 +57,13 @@ org.fuin.cqrs4j.example cqrs4j-example-aggregates - 0.4.0 + 0.5.0-SNAPSHOT org.fuin.cqrs4j.example.quarkus cqrs4j-quarkus-example-shared - 0.4.0 + 0.5.0-SNAPSHOT diff --git a/quarkus/shared/pom.xml b/quarkus/shared/pom.xml index 3b07030..4817c7e 100644 --- a/quarkus/shared/pom.xml +++ b/quarkus/shared/pom.xml @@ -7,7 +7,7 @@ org.fuin.cqrs4j.example.quarkus cqrs4j-quarkus-example-root - 0.4.0 + 0.5.0-SNAPSHOT ../pom.xml @@ -22,7 +22,7 @@ org.fuin.cqrs4j.example cqrs4j-example-shared - 0.4.0 + 0.5.0-SNAPSHOT diff --git a/shared/pom.xml b/shared/pom.xml index 68f6e21..cce1493 100644 --- a/shared/pom.xml +++ b/shared/pom.xml @@ -7,7 +7,7 @@ org.fuin.cqrs4j.example cqrs4j-example-root - 0.4.0 + 0.5.0-SNAPSHOT ../pom.xml diff --git a/spring-boot/command/pom.xml b/spring-boot/command/pom.xml index 2ac62c6..7a4f2ec 100644 --- a/spring-boot/command/pom.xml +++ b/spring-boot/command/pom.xml @@ -8,7 +8,7 @@ org.fuin.cqrs4j.example.spring cqrs4j-spring-example-root - 0.4.0 + 0.5.0-SNAPSHOT ../pom.xml @@ -23,19 +23,19 @@ org.fuin.cqrs4j.example cqrs4j-example-shared - 0.4.0 + 0.5.0-SNAPSHOT org.fuin.cqrs4j.example cqrs4j-example-aggregates - 0.4.0 + 0.5.0-SNAPSHOT org.fuin.cqrs4j.example.spring cqrs4j-spring-example-shared - 0.4.0 + 0.5.0-SNAPSHOT diff --git a/spring-boot/pom.xml b/spring-boot/pom.xml index 0f0e4c9..63aec4f 100644 --- a/spring-boot/pom.xml +++ b/spring-boot/pom.xml @@ -12,7 +12,7 @@ org.fuin.cqrs4j.example.spring cqrs4j-spring-example-root - 0.4.0 + 0.5.0-SNAPSHOT pom diff --git a/spring-boot/query/pom.xml b/spring-boot/query/pom.xml index 1c2126d..949445a 100644 --- a/spring-boot/query/pom.xml +++ b/spring-boot/query/pom.xml @@ -8,7 +8,7 @@ org.fuin.cqrs4j.example.spring cqrs4j-spring-example-root - 0.4.0 + 0.5.0-SNAPSHOT ../pom.xml @@ -23,13 +23,13 @@ org.fuin.cqrs4j.example cqrs4j-example-shared - 0.4.0 + 0.5.0-SNAPSHOT org.fuin.cqrs4j.example.spring cqrs4j-spring-example-shared - 0.4.0 + 0.5.0-SNAPSHOT diff --git a/spring-boot/shared/pom.xml b/spring-boot/shared/pom.xml index 216b231..2cd5c86 100644 --- a/spring-boot/shared/pom.xml +++ b/spring-boot/shared/pom.xml @@ -7,7 +7,7 @@ org.fuin.cqrs4j.example.spring cqrs4j-spring-example-root - 0.4.0 + 0.5.0-SNAPSHOT ../pom.xml @@ -22,7 +22,7 @@ org.fuin.cqrs4j.example cqrs4j-example-shared - 0.4.0 + 0.5.0-SNAPSHOT