Skip to content

Commit a45d2e5

Browse files
authored
Merge pull request quarkusio#35900 from geoand/quarkusio#35889
Fix RESTEasy CDI dependency issue
2 parents 32e9cd7 + 596d388 commit a45d2e5

File tree

3 files changed

+4
-10
lines changed
  • extensions/resteasy-classic

3 files changed

+4
-10
lines changed

extensions/resteasy-classic/rest-client/runtime/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@
2525
<dependency>
2626
<groupId>io.quarkus</groupId>
2727
<artifactId>quarkus-resteasy-common</artifactId>
28-
<exclusions>
29-
<exclusion>
30-
<groupId>org.jboss.resteasy</groupId>
31-
<artifactId>resteasy-cdi</artifactId>
32-
</exclusion>
33-
</exclusions>
3428
</dependency>
3529
<dependency>
3630
<groupId>io.quarkus</groupId>

extensions/resteasy-classic/resteasy-common/runtime/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,6 @@
8181
<groupId>jakarta.ws.rs</groupId>
8282
<artifactId>jakarta.ws.rs-api</artifactId>
8383
</dependency>
84-
<dependency>
85-
<groupId>org.jboss.resteasy</groupId>
86-
<artifactId>resteasy-cdi</artifactId>
87-
</dependency>
8884
<dependency>
8985
<groupId>org.jboss.resteasy</groupId>
9086
<artifactId>resteasy-json-binding-provider</artifactId>

extensions/resteasy-classic/resteasy-server-common/runtime/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@
2525
<groupId>io.quarkus</groupId>
2626
<artifactId>quarkus-resteasy-common</artifactId>
2727
</dependency>
28+
<dependency>
29+
<groupId>org.jboss.resteasy</groupId>
30+
<artifactId>resteasy-cdi</artifactId>
31+
</dependency>
2832
<dependency>
2933
<groupId>jakarta.validation</groupId>
3034
<artifactId>jakarta.validation-api</artifactId>

0 commit comments

Comments
 (0)