|
21 | 21 | <wiremock.version>2.35.0</wiremock.version> |
22 | 22 | <testcontainers.version>1.18.0</testcontainers.version> |
23 | 23 | <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> |
25 | 26 | </properties> |
26 | 27 |
|
27 | 28 | <dependencyManagement> |
28 | 29 | <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> |
36 | 51 | </dependencies> |
37 | 52 | </dependencyManagement> |
38 | 53 |
|
39 | 54 | <dependencies> |
40 | 55 | <dependency> |
41 | 56 | <groupId>org.testcontainers</groupId> |
42 | 57 | <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> |
44 | 73 | </dependency> |
45 | 74 | <dependency> |
46 | 75 | <groupId>org.assertj</groupId> |
47 | 76 | <artifactId>assertj-core</artifactId> |
48 | | - <version>3.24.2</version> |
49 | 77 | <scope>test</scope> |
50 | 78 | </dependency> |
51 | 79 | <dependency> |
|
124 | 152 | </execution> |
125 | 153 | </executions> |
126 | 154 | </plugin> |
127 | | - |
| 155 | + |
128 | 156 | <plugin> |
129 | 157 | <groupId>org.apache.maven.plugins</groupId> |
130 | 158 | <artifactId>maven-release-plugin</artifactId> |
|
146 | 174 | </releases> |
147 | 175 | </repository> |
148 | 176 | </repositories> |
149 | | - |
| 177 | + |
150 | 178 | <scm> |
151 | 179 | <connection>scm:git:git://github.com/wiremock/wiremock-testcontainers-java.git</connection> |
152 | 180 | <developerConnection>scm:git:https://github.com/wiremock/wiremock-testcontainers-java.git</developerConnection> |
153 | 181 | <url>https://github.com/wiremock/wiremock-testcontainers-java</url> |
154 | 182 | <tag>${scmTag}</tag> |
155 | 183 | </scm> |
156 | | - |
| 184 | + |
157 | 185 | <distributionManagement> |
158 | 186 | <repository> |
159 | 187 | <id>github</id> |
|
0 commit comments