Skip to content

Commit

Permalink
Make the build order more predictable
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartisk committed Nov 19, 2024
1 parent 8f1446c commit 957d81a
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 0 deletions.
7 changes: 7 additions & 0 deletions quickstart-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,13 @@
<artifactId>jakarta.ws.rs-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- For consistent build order -->
<dependency>
<groupId>org.wildfly.extras.graphql</groupId>
<artifactId>wildfly-microprofile-graphql-feature-pack</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>quickstart-client</finalName>
Expand Down
8 changes: 8 additions & 0 deletions quickstart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,14 @@
<artifactId>wildfly-arquillian-protocol-jmx</artifactId>
<scope>test</scope>
</dependency>

<!-- For consistent build order -->
<dependency>
<groupId>org.wildfly.extras.graphql</groupId>
<artifactId>wildfly-microprofile-graphql-feature-pack</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
Expand Down
8 changes: 8 additions & 0 deletions testsuite/client-vertx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,14 @@
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
</dependency>

<!-- For consistent build order -->
<dependency>
<groupId>org.wildfly.extras.graphql</groupId>
<artifactId>wildfly-microprofile-graphql-feature-pack</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
Expand Down
8 changes: 8 additions & 0 deletions testsuite/server-tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@
<groupId>jakarta.json</groupId>
<artifactId>jakarta.json-api</artifactId>
</dependency>

<!-- For consistent build order -->
<dependency>
<groupId>org.wildfly.extras.graphql</groupId>
<artifactId>wildfly-microprofile-graphql-feature-pack</artifactId>
<type>pom</type>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 957d81a

Please sign in to comment.