Skip to content

Commit

Permalink
Make sure quarkus-undertow is built before RESTEasy
Browse files Browse the repository at this point in the history
quarkus-undertow is not in the dependencies but AsyncIOUndertowTest
relies on quarkus-undertow so we need to make sure it is built before
RESTEasy.

Fixes regular build issues in snapshot deployment and early access
build (these builds do not rely on a previous full build before running
the tests).
  • Loading branch information
gsmet committed Mar 28, 2022
1 parent 583010c commit 0a8d8fb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions extensions/resteasy-classic/resteasy/deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,19 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-undertow-deployment</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 0a8d8fb

Please sign in to comment.