Skip to content

Commit 53e9c49

Browse files
committed
Add testcontainers as a dependency of test-common
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.
1 parent 9bfb6ae commit 53e9c49

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

test-framework/common/pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,21 @@
3434
<groupId>commons-io</groupId>
3535
<artifactId>commons-io</artifactId>
3636
</dependency>
37+
<!-- This makes Testcontainers part of the test classpath, allowing us to load it parent first -->
38+
<dependency>
39+
<groupId>org.testcontainers</groupId>
40+
<artifactId>testcontainers</artifactId>
41+
<exclusions>
42+
<exclusion>
43+
<groupId>junit</groupId>
44+
<artifactId>junit</artifactId>
45+
</exclusion>
46+
</exclusions>
47+
</dependency>
48+
<dependency>
49+
<groupId>io.quarkus</groupId>
50+
<artifactId>quarkus-junit4-mock</artifactId>
51+
</dependency>
3752
<!-- Needed for RestAssured -->
3853
<dependency>
3954
<groupId>org.jboss.logging</groupId>

0 commit comments

Comments
 (0)