From 92bac93c03781b0c58ac6841d8de9293421a6214 Mon Sep 17 00:00:00 2001 From: Ozan Gunalp Date: Wed, 1 Feb 2023 00:34:13 +0000 Subject: [PATCH] [RELEASE] - Bump version to 4.2.0 --- api/pom.xml | 2 +- .../reactive/messaging/connector/OutboundConnector.java | 3 ++- .../reactive/messaging/spi/OutgoingConnectorFactory.java | 3 ++- documentation/pom.xml | 2 +- examples/amqp-quickstart/pom.xml | 2 +- examples/kafka-quickstart-kotlin/pom.xml | 2 +- examples/kafka-quickstart/pom.xml | 2 +- examples/mqtt-quickstart/pom.xml | 2 +- examples/quickstart/pom.xml | 2 +- examples/rabbitmq-quickstart/pom.xml | 2 +- pom.xml | 2 +- release/pom.xml | 2 +- smallrye-connector-attribute-processor/pom.xml | 2 +- smallrye-reactive-messaging-amqp/pom.xml | 2 +- .../smallrye/reactive/messaging/amqp/AmqpClientHelper.java | 3 ++- .../io/smallrye/reactive/messaging/amqp/AmqpConnector.java | 3 ++- .../reactive/messaging/amqp/ssl/ClientSslContextBean.java | 5 +++-- smallrye-reactive-messaging-gcp-pubsub/pom.xml | 2 +- smallrye-reactive-messaging-health/pom.xml | 2 +- smallrye-reactive-messaging-in-memory/pom.xml | 2 +- smallrye-reactive-messaging-jackson/pom.xml | 2 +- smallrye-reactive-messaging-jms/pom.xml | 2 +- smallrye-reactive-messaging-jsonb/pom.xml | 2 +- smallrye-reactive-messaging-kafka-api/pom.xml | 2 +- smallrye-reactive-messaging-kafka-test-companion/pom.xml | 2 +- smallrye-reactive-messaging-kafka/pom.xml | 2 +- smallrye-reactive-messaging-mqtt/pom.xml | 2 +- smallrye-reactive-messaging-otel/pom.xml | 2 +- smallrye-reactive-messaging-provider/pom.xml | 2 +- smallrye-reactive-messaging-rabbitmq/pom.xml | 2 +- tck/pom.xml | 2 +- test-common/pom.xml | 2 +- 32 files changed, 38 insertions(+), 33 deletions(-) diff --git a/api/pom.xml b/api/pom.xml index 07a18ad245..10fcde930e 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 4.0.0-SNAPSHOT + 4.2.0 smallrye-reactive-messaging-api diff --git a/api/src/main/java/io/smallrye/reactive/messaging/connector/OutboundConnector.java b/api/src/main/java/io/smallrye/reactive/messaging/connector/OutboundConnector.java index a9fbd3bd89..da4ba746e4 100644 --- a/api/src/main/java/io/smallrye/reactive/messaging/connector/OutboundConnector.java +++ b/api/src/main/java/io/smallrye/reactive/messaging/connector/OutboundConnector.java @@ -56,7 +56,8 @@ * In the previous configuration, the smallrye reactive messaging would need to find the * {@link OutboundConnector} implementation qualified with the {@link Connector} qualifier with the value * {@code acme.kafka} to create the {@code my-channel} subscriber. Note that if - * the connector cannot be found, the deployment must be failed with a {@link jakarta.enterprise.inject.spi.DeploymentException}. + * the connector cannot be found, the deployment must be failed with a + * {@link jakarta.enterprise.inject.spi.DeploymentException}. *

* The {@link #getSubscriber(Config)} is called for every channel that needs to be created. The * {@link Config} object passed to the method contains a subset of the global configuration, and with the prefixes diff --git a/api/src/main/java/org/eclipse/microprofile/reactive/messaging/spi/OutgoingConnectorFactory.java b/api/src/main/java/org/eclipse/microprofile/reactive/messaging/spi/OutgoingConnectorFactory.java index d036680fd0..cdba82dc77 100644 --- a/api/src/main/java/org/eclipse/microprofile/reactive/messaging/spi/OutgoingConnectorFactory.java +++ b/api/src/main/java/org/eclipse/microprofile/reactive/messaging/spi/OutgoingConnectorFactory.java @@ -72,7 +72,8 @@ * In the previous configuration, the reactive messaging implementation would need to find the * {@link OutgoingConnectorFactory} implementation qualified with the {@link Connector} qualifier with the value * {@code acme.kafka} to create the {@code my-channel} subscriber. Note that if - * the connector cannot be found, the deployment must be failed with a {@link jakarta.enterprise.inject.spi.DeploymentException}. + * the connector cannot be found, the deployment must be failed with a + * {@link jakarta.enterprise.inject.spi.DeploymentException}. *

* The {@link #getSubscriberBuilder(Config)} is called for every channel that needs to be created. The * {@link Config} object passed to the method contains a subset of the global configuration, and with the prefixes removed. diff --git a/documentation/pom.xml b/documentation/pom.xml index 3eea9815d9..091d6c42e4 100644 --- a/documentation/pom.xml +++ b/documentation/pom.xml @@ -7,7 +7,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 4.0.0-SNAPSHOT + 4.2.0 documentation diff --git a/examples/amqp-quickstart/pom.xml b/examples/amqp-quickstart/pom.xml index 13451416bd..4d9da0c3b0 100644 --- a/examples/amqp-quickstart/pom.xml +++ b/examples/amqp-quickstart/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 4.0.0-SNAPSHOT + 4.2.0 ../../pom.xml diff --git a/examples/kafka-quickstart-kotlin/pom.xml b/examples/kafka-quickstart-kotlin/pom.xml index 924c69fdc2..9fdc6e132c 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 - 4.0.0-SNAPSHOT + 4.2.0 ../../pom.xml diff --git a/examples/kafka-quickstart/pom.xml b/examples/kafka-quickstart/pom.xml index cdaaeff743..9cc15d6223 100644 --- a/examples/kafka-quickstart/pom.xml +++ b/examples/kafka-quickstart/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 4.0.0-SNAPSHOT + 4.2.0 ../../pom.xml diff --git a/examples/mqtt-quickstart/pom.xml b/examples/mqtt-quickstart/pom.xml index 001d7a6843..72af402cdb 100644 --- a/examples/mqtt-quickstart/pom.xml +++ b/examples/mqtt-quickstart/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 4.0.0-SNAPSHOT + 4.2.0 ../../pom.xml diff --git a/examples/quickstart/pom.xml b/examples/quickstart/pom.xml index 2ee67affac..fe674318ba 100644 --- a/examples/quickstart/pom.xml +++ b/examples/quickstart/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 4.0.0-SNAPSHOT + 4.2.0 ../../pom.xml reactive-messaging-quickstart diff --git a/examples/rabbitmq-quickstart/pom.xml b/examples/rabbitmq-quickstart/pom.xml index ee40c83c06..1b339fb57f 100644 --- a/examples/rabbitmq-quickstart/pom.xml +++ b/examples/rabbitmq-quickstart/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 4.0.0-SNAPSHOT + 4.2.0 ../../pom.xml diff --git a/pom.xml b/pom.xml index a9e8ca3a35..769e6e797d 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 4.0.0-SNAPSHOT + 4.2.0 pom SmallRye Reactive Messaging diff --git a/release/pom.xml b/release/pom.xml index 86b065ed58..3c088717d9 100644 --- a/release/pom.xml +++ b/release/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 4.0.0-SNAPSHOT + 4.2.0 smallrye-reactive-messaging-release diff --git a/smallrye-connector-attribute-processor/pom.xml b/smallrye-connector-attribute-processor/pom.xml index fc280b23a2..ff2a590dbb 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 - 4.0.0-SNAPSHOT + 4.2.0 smallrye-connector-attribute-processor diff --git a/smallrye-reactive-messaging-amqp/pom.xml b/smallrye-reactive-messaging-amqp/pom.xml index 93f583c9f0..1ffbc71727 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 - 4.0.0-SNAPSHOT + 4.2.0 smallrye-reactive-messaging-amqp diff --git a/smallrye-reactive-messaging-amqp/src/main/java/io/smallrye/reactive/messaging/amqp/AmqpClientHelper.java b/smallrye-reactive-messaging-amqp/src/main/java/io/smallrye/reactive/messaging/amqp/AmqpClientHelper.java index 2c01d59ec9..bcaab1aa13 100644 --- a/smallrye-reactive-messaging-amqp/src/main/java/io/smallrye/reactive/messaging/amqp/AmqpClientHelper.java +++ b/smallrye-reactive-messaging-amqp/src/main/java/io/smallrye/reactive/messaging/amqp/AmqpClientHelper.java @@ -6,9 +6,10 @@ import java.util.Optional; +import javax.net.ssl.SSLContext; + import jakarta.enterprise.inject.Instance; import jakarta.enterprise.inject.literal.NamedLiteral; -import javax.net.ssl.SSLContext; import io.netty.handler.ssl.ApplicationProtocolConfig; import io.netty.handler.ssl.IdentityCipherSuiteFilter; diff --git a/smallrye-reactive-messaging-amqp/src/main/java/io/smallrye/reactive/messaging/amqp/AmqpConnector.java b/smallrye-reactive-messaging-amqp/src/main/java/io/smallrye/reactive/messaging/amqp/AmqpConnector.java index 4ab1696eca..75b5279a85 100644 --- a/smallrye-reactive-messaging-amqp/src/main/java/io/smallrye/reactive/messaging/amqp/AmqpConnector.java +++ b/smallrye-reactive-messaging-amqp/src/main/java/io/smallrye/reactive/messaging/amqp/AmqpConnector.java @@ -17,6 +17,8 @@ import java.util.concurrent.atomic.AtomicReference; import java.util.stream.Collectors; +import javax.net.ssl.SSLContext; + import jakarta.annotation.PostConstruct; import jakarta.annotation.Priority; import jakarta.enterprise.context.ApplicationScoped; @@ -26,7 +28,6 @@ import jakarta.enterprise.inject.Any; import jakarta.enterprise.inject.Instance; import jakarta.inject.Inject; -import javax.net.ssl.SSLContext; import org.eclipse.microprofile.config.Config; import org.eclipse.microprofile.reactive.messaging.Message; diff --git a/smallrye-reactive-messaging-amqp/src/test/java/io/smallrye/reactive/messaging/amqp/ssl/ClientSslContextBean.java b/smallrye-reactive-messaging-amqp/src/test/java/io/smallrye/reactive/messaging/amqp/ssl/ClientSslContextBean.java index 8c384e7a92..b2e06e2527 100644 --- a/smallrye-reactive-messaging-amqp/src/test/java/io/smallrye/reactive/messaging/amqp/ssl/ClientSslContextBean.java +++ b/smallrye-reactive-messaging-amqp/src/test/java/io/smallrye/reactive/messaging/amqp/ssl/ClientSslContextBean.java @@ -9,11 +9,12 @@ import java.nio.file.StandardOpenOption; import java.security.KeyStore; -import jakarta.enterprise.context.ApplicationScoped; -import jakarta.enterprise.inject.Produces; import javax.net.ssl.SSLContext; import javax.net.ssl.TrustManagerFactory; +import jakarta.enterprise.context.ApplicationScoped; +import jakarta.enterprise.inject.Produces; + import io.smallrye.common.annotation.Identifier; @ApplicationScoped diff --git a/smallrye-reactive-messaging-gcp-pubsub/pom.xml b/smallrye-reactive-messaging-gcp-pubsub/pom.xml index abfe645ac4..590a2fcca0 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 - 4.0.0-SNAPSHOT + 4.2.0 diff --git a/smallrye-reactive-messaging-health/pom.xml b/smallrye-reactive-messaging-health/pom.xml index a15fd8caea..1f93cbcc4c 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 - 4.0.0-SNAPSHOT + 4.2.0 diff --git a/smallrye-reactive-messaging-in-memory/pom.xml b/smallrye-reactive-messaging-in-memory/pom.xml index cb85f29526..ccaf36ad84 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 - 4.0.0-SNAPSHOT + 4.2.0 smallrye-reactive-messaging-in-memory diff --git a/smallrye-reactive-messaging-jackson/pom.xml b/smallrye-reactive-messaging-jackson/pom.xml index f2ca712449..c71e8b982b 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 - 4.0.0-SNAPSHOT + 4.2.0 4.0.0 diff --git a/smallrye-reactive-messaging-jms/pom.xml b/smallrye-reactive-messaging-jms/pom.xml index d10440b956..6ab4e55e2d 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 - 4.0.0-SNAPSHOT + 4.2.0 smallrye-reactive-messaging-jms diff --git a/smallrye-reactive-messaging-jsonb/pom.xml b/smallrye-reactive-messaging-jsonb/pom.xml index 7406da8bc6..db7abed439 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 - 4.0.0-SNAPSHOT + 4.2.0 4.0.0 diff --git a/smallrye-reactive-messaging-kafka-api/pom.xml b/smallrye-reactive-messaging-kafka-api/pom.xml index b045136b9d..d283fead20 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 - 4.0.0-SNAPSHOT + 4.2.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 8d14d441ea..40875749d9 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 - 4.0.0-SNAPSHOT + 4.2.0 smallrye-reactive-messaging-kafka-test-companion diff --git a/smallrye-reactive-messaging-kafka/pom.xml b/smallrye-reactive-messaging-kafka/pom.xml index 6392b2e259..c46366f656 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 - 4.0.0-SNAPSHOT + 4.2.0 smallrye-reactive-messaging-kafka diff --git a/smallrye-reactive-messaging-mqtt/pom.xml b/smallrye-reactive-messaging-mqtt/pom.xml index 4334445202..3d44e4922f 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 - 4.0.0-SNAPSHOT + 4.2.0 smallrye-reactive-messaging-mqtt diff --git a/smallrye-reactive-messaging-otel/pom.xml b/smallrye-reactive-messaging-otel/pom.xml index 0791a7669d..110be5f6bd 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 - 4.0.0-SNAPSHOT + 4.2.0 4.0.0 diff --git a/smallrye-reactive-messaging-provider/pom.xml b/smallrye-reactive-messaging-provider/pom.xml index 87edfe9757..5a1d75c445 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 - 4.0.0-SNAPSHOT + 4.2.0 smallrye-reactive-messaging-provider diff --git a/smallrye-reactive-messaging-rabbitmq/pom.xml b/smallrye-reactive-messaging-rabbitmq/pom.xml index 19c78a629a..37da88776a 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 - 4.0.0-SNAPSHOT + 4.2.0 smallrye-reactive-messaging-rabbitmq diff --git a/tck/pom.xml b/tck/pom.xml index 395b4bb65d..b83724b91c 100644 --- a/tck/pom.xml +++ b/tck/pom.xml @@ -5,7 +5,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 4.0.0-SNAPSHOT + 4.2.0 tck diff --git a/test-common/pom.xml b/test-common/pom.xml index 9d7ad8e711..fd6190698d 100644 --- a/test-common/pom.xml +++ b/test-common/pom.xml @@ -6,7 +6,7 @@ io.smallrye.reactive smallrye-reactive-messaging - 4.0.0-SNAPSHOT + 4.2.0 test-common