Skip to content

Commit 9780d96

Browse files
jedla97fedinskiy
authored andcommitted
Change Quarkus reactive messaging artifact names which were changed in Quarkus 3.9
1 parent d9693b8 commit 9780d96

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

002-quarkus-all-extensions/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
</dependency>
7979
<dependency>
8080
<groupId>io.quarkus</groupId>
81-
<artifactId>quarkus-smallrye-reactive-messaging-kafka</artifactId>
81+
<artifactId>quarkus-messaging-kafka</artifactId>
8282
</dependency>
8383
<dependency>
8484
<groupId>io.quarkus</groupId>
@@ -154,7 +154,7 @@
154154
</dependency>
155155
<dependency>
156156
<groupId>io.quarkus</groupId>
157-
<artifactId>quarkus-smallrye-reactive-messaging-amqp</artifactId>
157+
<artifactId>quarkus-messaging-amqp</artifactId>
158158
</dependency>
159159
<dependency>
160160
<groupId>io.quarkus</groupId>
@@ -198,7 +198,7 @@
198198
</dependency>
199199
<dependency>
200200
<groupId>io.quarkus</groupId>
201-
<artifactId>quarkus-smallrye-reactive-messaging</artifactId>
201+
<artifactId>quarkus-messaging</artifactId>
202202
</dependency>
203203
<dependency>
204204
<groupId>io.quarkus</groupId>
@@ -367,7 +367,7 @@
367367
<!-- </dependency>-->
368368
<dependency>
369369
<groupId>io.quarkus</groupId>
370-
<artifactId>quarkus-smallrye-reactive-messaging-mqtt</artifactId>
370+
<artifactId>quarkus-messaging-mqtt</artifactId>
371371
</dependency>
372372
<!-- New extensions in 1.7.1 comparing to 1.3.4 -->
373373
<!-- <dependency>-->

003-quarkus-many-extensions/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
</dependency>
4646
<dependency>
4747
<groupId>io.quarkus</groupId>
48-
<artifactId>quarkus-smallrye-reactive-messaging-amqp</artifactId>
48+
<artifactId>quarkus-messaging-amqp</artifactId>
4949
</dependency>
5050
<dependency>
5151
<groupId>io.quarkus</groupId>
@@ -119,7 +119,7 @@
119119
</dependency>
120120
<dependency>
121121
<groupId>io.quarkus</groupId>
122-
<artifactId>quarkus-smallrye-reactive-messaging-kafka</artifactId>
122+
<artifactId>quarkus-messaging-kafka</artifactId>
123123
</dependency>
124124
<dependency>
125125
<groupId>io.quarkus</groupId>
@@ -135,7 +135,7 @@
135135
</dependency>
136136
<dependency>
137137
<groupId>io.quarkus</groupId>
138-
<artifactId>quarkus-smallrye-reactive-messaging</artifactId>
138+
<artifactId>quarkus-messaging</artifactId>
139139
</dependency>
140140
<dependency>
141141
<groupId>io.quarkus</groupId>

301-quarkus-vertx-kafka/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ Vert.x Kafka exploratory test.
3434
* Test profiles (Strimzi/Confluent)
3535

3636
**Brief description:** A [verticle][1] deployer launch a [periodic verticle][2] that is going to be producing random Stock-market values and push it to a Kafka Topic (`stock-price`).
37-
A reactive kafka consumer (`quarkus-smallrye-reactive-messaging-kafka`) will be subscribed to this topic and will change the status of the incoming events from `pending` to `completed`, and moving these records to `end-stock-price` topic.
38-
Note that there is another verticle `KStockPriceConsumer` launched by our verticle deployer, that does nothing. The reason is because `quarkus-smallrye-reactive-messaging-kafka` is already using vertx kafka client,
37+
A reactive kafka consumer (`quarkus-messaging-kafka`) will be subscribed to this topic and will change the status of the incoming events from `pending` to `completed`, and moving these records to `end-stock-price` topic.
38+
Note that there is another verticle `KStockPriceConsumer` launched by our verticle deployer, that does nothing. The reason is because `quarkus-messaging-kafka` is already using vertx kafka client,
3939
so we don't really need a new verticle to consume Kafka in a reactive Non-blocking way. However, this verticle can be an example about how to deploy an abstract verticle from a verticle deployer.
4040

4141
[1]: https://vertx.io/docs/vertx-core/java/#_verticles

301-quarkus-vertx-kafka/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</dependency>
2828
<dependency>
2929
<groupId>io.quarkus</groupId>
30-
<artifactId>quarkus-smallrye-reactive-messaging-kafka</artifactId>
30+
<artifactId>quarkus-messaging-kafka</artifactId>
3131
</dependency>
3232
<!-- Kafka -->
3333
<dependency>

0 commit comments

Comments
 (0)