Skip to content

Commit 9cdaeee

Browse files
committed
feat: Replace quarkus-rest(-client)-jackson with quarkus-rest(-client)
We no longer use Jackson
1 parent 0e7cd52 commit 9cdaeee

File tree

8 files changed

+7
-11
lines changed

8 files changed

+7
-11
lines changed

boms/reference/src/it/reference-usage-test/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,6 @@
101101
<groupId>io.quarkus</groupId>
102102
<artifactId>quarkus-arc</artifactId>
103103
</dependency>
104-
<dependency>
105-
<groupId>io.quarkus</groupId>
106-
<artifactId>quarkus-resteasy-jackson</artifactId>
107-
</dependency>
108104
<dependency>
109105
<groupId>io.quarkus</groupId>
110106
<artifactId>quarkus-grpc</artifactId>

examples/helloworld/server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</dependency>
2727
<dependency>
2828
<groupId>io.quarkus</groupId>
29-
<artifactId>quarkus-resteasy-jackson</artifactId>
29+
<artifactId>quarkus-resteasy</artifactId>
3030
<scope>provided</scope>
3131
</dependency>
3232
<dependency>

extras/push-notification-config-store-database-jpa/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
</dependency>
5656
<dependency>
5757
<groupId>io.quarkus</groupId>
58-
<artifactId>quarkus-rest-client-jackson</artifactId>
58+
<artifactId>quarkus-rest-client</artifactId>
5959
<scope>test</scope>
6060
</dependency>
6161
<dependency>

extras/task-store-database-jpa/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
</dependency>
6060
<dependency>
6161
<groupId>io.quarkus</groupId>
62-
<artifactId>quarkus-rest-client-jackson</artifactId>
62+
<artifactId>quarkus-rest-client</artifactId>
6363
<scope>test</scope>
6464
</dependency>
6565
<dependency>

reference/common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
</dependency>
6161
<dependency>
6262
<groupId>io.quarkus</groupId>
63-
<artifactId>quarkus-rest-client-jackson</artifactId>
63+
<artifactId>quarkus-rest-client</artifactId>
6464
<scope>test</scope>
6565
</dependency>
6666
<dependency>

reference/jsonrpc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
</dependency>
7070
<dependency>
7171
<groupId>io.quarkus</groupId>
72-
<artifactId>quarkus-rest-client-jackson</artifactId>
72+
<artifactId>quarkus-rest-client</artifactId>
7373
<scope>test</scope>
7474
</dependency>
7575
<dependency>

reference/rest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
</dependency>
8080
<dependency>
8181
<groupId>io.quarkus</groupId>
82-
<artifactId>quarkus-rest-client-jackson</artifactId>
82+
<artifactId>quarkus-rest-client</artifactId>
8383
<scope>test</scope>
8484
</dependency>
8585
<dependency>

tck/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</dependency>
3131
<dependency>
3232
<groupId>io.quarkus</groupId>
33-
<artifactId>quarkus-rest-jackson</artifactId>
33+
<artifactId>quarkus-rest</artifactId>
3434
<scope>provided</scope>
3535
</dependency>
3636
<dependency>

0 commit comments

Comments
 (0)