diff --git a/api/pom.xml b/api/pom.xml index 56adbd0f2b..112e73857b 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 smallrye-reactive-messaging-api diff --git a/api/src/test/java/io/smallrye/reactive/messaging/ce/impl/CloudEventTimestampFormatTest.java b/api/src/test/java/io/smallrye/reactive/messaging/ce/impl/CloudEventTimestampFormatTest.java index 41329cec50..65c35e5865 100644 --- a/api/src/test/java/io/smallrye/reactive/messaging/ce/impl/CloudEventTimestampFormatTest.java +++ b/api/src/test/java/io/smallrye/reactive/messaging/ce/impl/CloudEventTimestampFormatTest.java @@ -27,13 +27,14 @@ public class CloudEventTimestampFormatTest { static Stream testFormatIsoAndParseCustom_args() { return Stream.of( - Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 6789123, ZoneOffset.ofHours(-7)), "2023-01-02T03:04:05.006789123-07:00"), - Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 370582000, ZoneOffset.ofHours(-7)), "2023-01-02T03:04:05.370582-07:00"), + Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 6789123, ZoneOffset.ofHours(-7)), + "2023-01-02T03:04:05.006789123-07:00"), + Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 370582000, ZoneOffset.ofHours(-7)), + "2023-01-02T03:04:05.370582-07:00"), Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 0, ZoneOffset.ofHours(-7)), "2023-01-02T03:04:05-07:00"), Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 6789123, ZoneOffset.UTC), "2023-01-02T03:04:05.006789123Z"), Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 370582000, ZoneOffset.UTC), "2023-01-02T03:04:05.370582Z"), - Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 0, ZoneOffset.UTC), "2023-01-02T03:04:05Z") - ); + Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 0, ZoneOffset.UTC), "2023-01-02T03:04:05Z")); } @ParameterizedTest @@ -47,13 +48,14 @@ void testFormatIsoAndParseCustom(ZonedDateTime instant, String formatted) { static Stream testFormatCustomAndParseIso_args() { return Stream.of( - Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 6789123, ZoneOffset.ofHours(-7)), "2023-01-02T03:04:05.006789123-07:00"), - Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 370582000, ZoneOffset.ofHours(-7)), "2023-01-02T03:04:05.370582-07:00"), + Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 6789123, ZoneOffset.ofHours(-7)), + "2023-01-02T03:04:05.006789123-07:00"), + Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 370582000, ZoneOffset.ofHours(-7)), + "2023-01-02T03:04:05.370582-07:00"), Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 0, ZoneOffset.ofHours(-7)), "2023-01-02T03:04:05-07:00"), Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 6789123, ZoneOffset.UTC), "2023-01-02T03:04:05.006789123Z"), Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 370582000, ZoneOffset.UTC), "2023-01-02T03:04:05.370582Z"), - Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 0, ZoneOffset.UTC), "2023-01-02T03:04:05Z") - ); + Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 0, ZoneOffset.UTC), "2023-01-02T03:04:05Z")); } @ParameterizedTest @@ -67,13 +69,17 @@ void testFormatCustomAndParseIso(ZonedDateTime instant, String formatted) { static Stream testFormatCustomAndParseIsoFailed_args() { return Stream.of( - Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 6789123, ZoneId.of("GMT")), "2023-01-02T03:04:05.006789123GMT"), - Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 370582000, ZoneId.of("GMT")), "2023-01-02T03:04:05.370582GMT"), + Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 6789123, ZoneId.of("GMT")), + "2023-01-02T03:04:05.006789123GMT"), + Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 370582000, ZoneId.of("GMT")), + "2023-01-02T03:04:05.370582GMT"), Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 0, ZoneId.of("GMT")), "2023-01-02T03:04:05GMT"), - Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 6789123, ZoneId.of("Europe/Paris")), "2023-01-02T03:04:05.006789123Europe/Paris"), - Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 370582000, ZoneId.of("Europe/Paris")), "2023-01-02T03:04:05.370582Europe/Paris"), - Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 0, ZoneId.of("Europe/Paris")), "2023-01-02T03:04:05Europe/Paris") - ); + Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 6789123, ZoneId.of("Europe/Paris")), + "2023-01-02T03:04:05.006789123Europe/Paris"), + Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 370582000, ZoneId.of("Europe/Paris")), + "2023-01-02T03:04:05.370582Europe/Paris"), + Arguments.of(ZonedDateTime.of(2023, 1, 2, 3, 4, 5, 0, ZoneId.of("Europe/Paris")), + "2023-01-02T03:04:05Europe/Paris")); } @ParameterizedTest @@ -93,8 +99,7 @@ static Stream testParseCustomAndFormatIso_args() { Arguments.of("2023-01-25T19:07:06.006789123-07:00", "2023-01-25T19:07:06.006789123-07:00"), Arguments.of("2023-01-25T19:07:06Z", "2023-01-25T19:07:06Z"), Arguments.of("2023-01-25T19:07:06Europe/Paris", "2023-01-25T19:07:06+01:00"), - Arguments.of("2023-01-25T19:07:06+02:00", "2023-01-25T19:07:06+02:00") - ); + Arguments.of("2023-01-25T19:07:06+02:00", "2023-01-25T19:07:06+02:00")); } @ParameterizedTest @@ -110,8 +115,7 @@ static Stream testParseIsoAndFormatCustom_args() { Arguments.of("2023-01-25T19:07:06.370582Z", "2023-01-25T19:07:06.370582Z"), Arguments.of("2023-01-25T19:07:06Z", "2023-01-25T19:07:06Z"), Arguments.of("2023-01-02T03:04:05.006789123-07:00", "2023-01-02T03:04:05.006789123-07:00"), - Arguments.of("2023-01-02T03:04:05-07:00", "2023-01-02T03:04:05-07:00") - ); + Arguments.of("2023-01-02T03:04:05-07:00", "2023-01-02T03:04:05-07:00")); } @ParameterizedTest @@ -125,8 +129,7 @@ void testParseIsoAndFormatCustom(String formatted, String isoParsed) { static Stream testParseIsoFailed_args() { return Stream.of( Arguments.of("2023-01-25T19:07:06.370582GMT"), - Arguments.of("2023-01-25T19:07:06GMT") - ); + Arguments.of("2023-01-25T19:07:06GMT")); } @ParameterizedTest diff --git a/documentation/pom.xml b/documentation/pom.xml index 952b5c7c7a..fc2db93b5a 100644 --- a/documentation/pom.xml +++ b/documentation/pom.xml @@ -7,7 +7,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 documentation diff --git a/examples/amqp-quickstart/pom.xml b/examples/amqp-quickstart/pom.xml index 942fad0afc..d7b3fdb50a 100644 --- a/examples/amqp-quickstart/pom.xml +++ b/examples/amqp-quickstart/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 ../../pom.xml diff --git a/examples/kafka-quickstart-kotlin/pom.xml b/examples/kafka-quickstart-kotlin/pom.xml index cda9c5e1ae..b675f179d7 100644 --- a/examples/kafka-quickstart-kotlin/pom.xml +++ b/examples/kafka-quickstart-kotlin/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 ../../pom.xml diff --git a/examples/kafka-quickstart/pom.xml b/examples/kafka-quickstart/pom.xml index eb02e08173..b36dffd65c 100644 --- a/examples/kafka-quickstart/pom.xml +++ b/examples/kafka-quickstart/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 ../../pom.xml diff --git a/examples/mqtt-quickstart/pom.xml b/examples/mqtt-quickstart/pom.xml index 9f09bd72ff..956dc97cfb 100644 --- a/examples/mqtt-quickstart/pom.xml +++ b/examples/mqtt-quickstart/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 ../../pom.xml diff --git a/examples/quickstart/pom.xml b/examples/quickstart/pom.xml index d0991649ca..42318d4d54 100644 --- a/examples/quickstart/pom.xml +++ b/examples/quickstart/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 ../../pom.xml reactive-messaging-quickstart diff --git a/examples/rabbitmq-quickstart/pom.xml b/examples/rabbitmq-quickstart/pom.xml index eacf563a41..f1d0ba41e8 100644 --- a/examples/rabbitmq-quickstart/pom.xml +++ b/examples/rabbitmq-quickstart/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 ../../pom.xml diff --git a/pom.xml b/pom.xml index 4e81b1b252..fa15a73c0e 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 pom SmallRye Reactive Messaging diff --git a/release/pom.xml b/release/pom.xml index c7ef1c750b..c130e4219c 100644 --- a/release/pom.xml +++ b/release/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 smallrye-reactive-messaging-release diff --git a/smallrye-connector-attribute-processor/pom.xml b/smallrye-connector-attribute-processor/pom.xml index 56536d7ea5..8fba0ae316 100644 --- a/smallrye-connector-attribute-processor/pom.xml +++ b/smallrye-connector-attribute-processor/pom.xml @@ -7,7 +7,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 smallrye-connector-attribute-processor diff --git a/smallrye-reactive-messaging-amqp/pom.xml b/smallrye-reactive-messaging-amqp/pom.xml index 5ce5df0a75..67da211d02 100644 --- a/smallrye-reactive-messaging-amqp/pom.xml +++ b/smallrye-reactive-messaging-amqp/pom.xml @@ -6,7 +6,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 smallrye-reactive-messaging-amqp diff --git a/smallrye-reactive-messaging-camel/pom.xml b/smallrye-reactive-messaging-camel/pom.xml index 0723e62347..7717658887 100644 --- a/smallrye-reactive-messaging-camel/pom.xml +++ b/smallrye-reactive-messaging-camel/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 smallrye-reactive-messaging-camel diff --git a/smallrye-reactive-messaging-gcp-pubsub/pom.xml b/smallrye-reactive-messaging-gcp-pubsub/pom.xml index c465bbc9ba..d8589aec6d 100644 --- a/smallrye-reactive-messaging-gcp-pubsub/pom.xml +++ b/smallrye-reactive-messaging-gcp-pubsub/pom.xml @@ -4,7 +4,7 @@ smallrye-reactive-messaging io.smallrye.reactive - 3.23.0-SNAPSHOT + 3.23.0 diff --git a/smallrye-reactive-messaging-health/pom.xml b/smallrye-reactive-messaging-health/pom.xml index f4a9c61157..fefcd8bcd9 100644 --- a/smallrye-reactive-messaging-health/pom.xml +++ b/smallrye-reactive-messaging-health/pom.xml @@ -7,7 +7,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 diff --git a/smallrye-reactive-messaging-in-memory/pom.xml b/smallrye-reactive-messaging-in-memory/pom.xml index c14992fc89..6ea0328de2 100644 --- a/smallrye-reactive-messaging-in-memory/pom.xml +++ b/smallrye-reactive-messaging-in-memory/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 smallrye-reactive-messaging-in-memory diff --git a/smallrye-reactive-messaging-jackson/pom.xml b/smallrye-reactive-messaging-jackson/pom.xml index 0de509c638..25732e35ec 100644 --- a/smallrye-reactive-messaging-jackson/pom.xml +++ b/smallrye-reactive-messaging-jackson/pom.xml @@ -5,7 +5,7 @@ smallrye-reactive-messaging io.smallrye.reactive - 3.23.0-SNAPSHOT + 3.23.0 4.0.0 diff --git a/smallrye-reactive-messaging-jms/pom.xml b/smallrye-reactive-messaging-jms/pom.xml index 3e64321c0f..e5f1e3279a 100644 --- a/smallrye-reactive-messaging-jms/pom.xml +++ b/smallrye-reactive-messaging-jms/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 smallrye-reactive-messaging-jms diff --git a/smallrye-reactive-messaging-jsonb/pom.xml b/smallrye-reactive-messaging-jsonb/pom.xml index a7a9e06576..2bdbed94c8 100644 --- a/smallrye-reactive-messaging-jsonb/pom.xml +++ b/smallrye-reactive-messaging-jsonb/pom.xml @@ -5,7 +5,7 @@ smallrye-reactive-messaging io.smallrye.reactive - 3.23.0-SNAPSHOT + 3.23.0 4.0.0 diff --git a/smallrye-reactive-messaging-kafka-api/pom.xml b/smallrye-reactive-messaging-kafka-api/pom.xml index 8c0a8fbd47..c7654268df 100644 --- a/smallrye-reactive-messaging-kafka-api/pom.xml +++ b/smallrye-reactive-messaging-kafka-api/pom.xml @@ -6,7 +6,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 smallrye-reactive-messaging-kafka-api diff --git a/smallrye-reactive-messaging-kafka-test-companion/pom.xml b/smallrye-reactive-messaging-kafka-test-companion/pom.xml index 36286b7b9b..d11053163c 100644 --- a/smallrye-reactive-messaging-kafka-test-companion/pom.xml +++ b/smallrye-reactive-messaging-kafka-test-companion/pom.xml @@ -6,7 +6,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 smallrye-reactive-messaging-kafka-test-companion diff --git a/smallrye-reactive-messaging-kafka/pom.xml b/smallrye-reactive-messaging-kafka/pom.xml index cf6f7627cd..9e37401236 100644 --- a/smallrye-reactive-messaging-kafka/pom.xml +++ b/smallrye-reactive-messaging-kafka/pom.xml @@ -6,7 +6,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 smallrye-reactive-messaging-kafka diff --git a/smallrye-reactive-messaging-mqtt/pom.xml b/smallrye-reactive-messaging-mqtt/pom.xml index 025d49b476..8dc36caab4 100644 --- a/smallrye-reactive-messaging-mqtt/pom.xml +++ b/smallrye-reactive-messaging-mqtt/pom.xml @@ -6,7 +6,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 smallrye-reactive-messaging-mqtt diff --git a/smallrye-reactive-messaging-otel/pom.xml b/smallrye-reactive-messaging-otel/pom.xml index 3458c38ade..39c347e9f3 100644 --- a/smallrye-reactive-messaging-otel/pom.xml +++ b/smallrye-reactive-messaging-otel/pom.xml @@ -5,7 +5,7 @@ smallrye-reactive-messaging io.smallrye.reactive - 3.23.0-SNAPSHOT + 3.23.0 4.0.0 diff --git a/smallrye-reactive-messaging-provider/pom.xml b/smallrye-reactive-messaging-provider/pom.xml index fcfae10842..6aef944a72 100644 --- a/smallrye-reactive-messaging-provider/pom.xml +++ b/smallrye-reactive-messaging-provider/pom.xml @@ -6,7 +6,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 smallrye-reactive-messaging-provider diff --git a/smallrye-reactive-messaging-rabbitmq/pom.xml b/smallrye-reactive-messaging-rabbitmq/pom.xml index 1075518e94..06142fbda5 100644 --- a/smallrye-reactive-messaging-rabbitmq/pom.xml +++ b/smallrye-reactive-messaging-rabbitmq/pom.xml @@ -6,7 +6,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 smallrye-reactive-messaging-rabbitmq diff --git a/tck/pom.xml b/tck/pom.xml index e69a7e9dbc..28cb2c650a 100644 --- a/tck/pom.xml +++ b/tck/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 tck diff --git a/test-common/pom.xml b/test-common/pom.xml index 8d9d37f0a3..481eda4157 100644 --- a/test-common/pom.xml +++ b/test-common/pom.xml @@ -6,7 +6,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 3.23.0-SNAPSHOT + 3.23.0 test-common