Skip to content

Commit

Permalink
Missing test deps declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
tsegismont committed May 18, 2022
1 parent 0d08b98 commit 72c5943
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions integration-tests/kubernetes-service-binding-reactive/pom.xml
Expand Up @@ -43,6 +43,32 @@
</dependency>

<!-- Minimal test dependencies to *-deployment artifacts for consistent build order -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-reactive-jackson-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-hibernate-reactive-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-reactive-pg-client-deployment</artifactId>
Expand Down

0 comments on commit 72c5943

Please sign in to comment.