Skip to content

Commit

Permalink
Add testcontainers as a dependency of test-common
Browse files Browse the repository at this point in the history
While we probably want to be a lot more clever about it, it's the
easiest way to have it in the test classpath and thus being allowed to
load it parent first.
  • Loading branch information
gsmet committed Aug 16, 2024
1 parent 9bfb6ae commit 53e9c49
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions test-framework/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,21 @@
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<!-- This makes Testcontainers part of the test classpath, allowing us to load it parent first -->
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit4-mock</artifactId>
</dependency>
<!-- Needed for RestAssured -->
<dependency>
<groupId>org.jboss.logging</groupId>
Expand Down

0 comments on commit 53e9c49

Please sign in to comment.