Skip to content

Commit 1e460c4

Browse files
Merge pull request #10 from bitxon/feature/re-organize-dependencies
Feature/Re-organize Dependencies and enable Juni4 & Junit5 execution togeter
2 parents d62d58f + 33ee1bd commit 1e460c4

File tree

1 file changed

+41
-13
lines changed

1 file changed

+41
-13
lines changed

pom.xml

Lines changed: 41 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,31 +21,59 @@
2121
<wiremock.version>2.35.0</wiremock.version>
2222
<testcontainers.version>1.18.0</testcontainers.version>
2323
<junit.version>5.9.2</junit.version>
24-
<project.scm.id>github</project.scm.id>
24+
<assertj.version>3.24.2</assertj.version>
25+
<project.scm.id>github</project.scm.id>
2526
</properties>
2627

2728
<dependencyManagement>
2829
<dependencies>
29-
<dependency>
30-
<groupId>org.testcontainers</groupId>
31-
<artifactId>testcontainers-bom</artifactId>
32-
<version>${testcontainers.version}</version>
33-
<type>pom</type>
34-
<scope>import</scope>
35-
</dependency>
30+
<dependency>
31+
<groupId>org.testcontainers</groupId>
32+
<artifactId>testcontainers-bom</artifactId>
33+
<version>${testcontainers.version}</version>
34+
<type>pom</type>
35+
<scope>import</scope>
36+
</dependency>
37+
<dependency>
38+
<groupId>org.junit</groupId>
39+
<artifactId>junit-bom</artifactId>
40+
<version>${junit.version}</version>
41+
<type>pom</type>
42+
<scope>import</scope>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.assertj</groupId>
46+
<artifactId>assertj-bom</artifactId>
47+
<version>${assertj.version}</version>
48+
<type>pom</type>
49+
<scope>import</scope>
50+
</dependency>
3651
</dependencies>
3752
</dependencyManagement>
3853

3954
<dependencies>
4055
<dependency>
4156
<groupId>org.testcontainers</groupId>
4257
<artifactId>testcontainers</artifactId>
43-
<version>${testcontainers.version}</version>
58+
</dependency>
59+
<dependency>
60+
<groupId>org.testcontainers</groupId>
61+
<artifactId>junit-jupiter</artifactId>
62+
<scope>test</scope>
63+
</dependency>
64+
<dependency>
65+
<groupId>org.junit.jupiter</groupId>
66+
<artifactId>junit-jupiter-engine</artifactId>
67+
<scope>test</scope>
68+
</dependency>
69+
<dependency>
70+
<groupId>org.junit.vintage</groupId>
71+
<artifactId>junit-vintage-engine</artifactId>
72+
<scope>test</scope>
4473
</dependency>
4574
<dependency>
4675
<groupId>org.assertj</groupId>
4776
<artifactId>assertj-core</artifactId>
48-
<version>3.24.2</version>
4977
<scope>test</scope>
5078
</dependency>
5179
<dependency>
@@ -124,7 +152,7 @@
124152
</execution>
125153
</executions>
126154
</plugin>
127-
155+
128156
<plugin>
129157
<groupId>org.apache.maven.plugins</groupId>
130158
<artifactId>maven-release-plugin</artifactId>
@@ -146,14 +174,14 @@
146174
</releases>
147175
</repository>
148176
</repositories>
149-
177+
150178
<scm>
151179
<connection>scm:git:git://github.com/wiremock/wiremock-testcontainers-java.git</connection>
152180
<developerConnection>scm:git:https://github.com/wiremock/wiremock-testcontainers-java.git</developerConnection>
153181
<url>https://github.com/wiremock/wiremock-testcontainers-java</url>
154182
<tag>${scmTag}</tag>
155183
</scm>
156-
184+
157185
<distributionManagement>
158186
<repository>
159187
<id>github</id>

0 commit comments

Comments
 (0)