Skip to content

Commit

Permalink
Merge pull request #142 from jmartisk/build-order
Browse files Browse the repository at this point in the history
Fix the build order
  • Loading branch information
mkouba authored Mar 7, 2025
2 parents 8fb7b3a + 0cd6629 commit faecf10
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions transports/sse/integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,20 @@
<artifactId>quarkus-mcp-server-sse</artifactId>
<version>${project.version}</version>
</dependency>
<!-- For consistent build order -->
<dependency>
<groupId>io.quarkiverse.mcp</groupId>
<artifactId>quarkus-mcp-server-sse-deployment</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
Expand Down
14 changes: 14 additions & 0 deletions transports/stdio/integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,20 @@
<artifactId>quarkus-mcp-server-stdio</artifactId>
<version>${project.version}</version>
</dependency>
<!-- For consistent build order -->
<dependency>
<groupId>io.quarkiverse.mcp</groupId>
<artifactId>quarkus-mcp-server-stdio-deployment</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
Expand Down

0 comments on commit faecf10

Please sign in to comment.