|
13 | 13 | <maven.compiler.target>11</maven.compiler.target>
|
14 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
15 | 15 | <caffeine.version>3.1.8</caffeine.version>
|
16 |
| - <junit.version>5.10.3</junit.version> |
17 | 16 | <mysql-connector.version>8.4.0</mysql-connector.version>
|
18 | 17 | <okhttp.version>4.12.0</okhttp.version>
|
19 | 18 | <protobuf.version>4.27.2</protobuf.version>
|
20 | 19 | <grpc.version>1.65.0</grpc.version>
|
21 | 20 | <logback-classic.version>1.4.12</logback-classic.version>
|
22 | 21 | <testcontainers.version>1.20.0</testcontainers.version>
|
| 22 | + <junit.jupiter.version>5.10.3</junit.jupiter.version> |
| 23 | + <junit.platform.version>1.8.2</junit.platform.version> |
| 24 | + <surefire.plugin.version>3.0.0-M5</surefire.plugin.version> |
23 | 25 | </properties>
|
24 | 26 |
|
25 | 27 | <dependencies>
|
|
67 | 69 | <dependency>
|
68 | 70 | <groupId>org.junit.jupiter</groupId>
|
69 | 71 | <artifactId>junit-jupiter</artifactId>
|
70 |
| - <version>${junit.version}</version> |
| 72 | + <version>${junit.jupiter.version}</version> |
| 73 | + <scope>test</scope> |
| 74 | + </dependency> |
| 75 | + |
| 76 | + <dependency> |
| 77 | + <groupId>org.junit.jupiter</groupId> |
| 78 | + <artifactId>junit-jupiter-api</artifactId> |
| 79 | + <version>${junit.jupiter.version}</version> |
| 80 | + <scope>test</scope> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>org.junit.jupiter</groupId> |
| 84 | + <artifactId>junit-jupiter-engine</artifactId> |
| 85 | + <version>${junit.jupiter.version}</version> |
71 | 86 | <scope>test</scope>
|
72 | 87 | </dependency>
|
73 | 88 |
|
|
172 | 187 | </execution>
|
173 | 188 | </executions>
|
174 | 189 | </plugin>
|
| 190 | + |
| 191 | + <plugin> |
| 192 | + <groupId>org.apache.maven.plugins</groupId> |
| 193 | + <artifactId>maven-surefire-plugin</artifactId> |
| 194 | + <version>${surefire.plugin.version}</version> |
| 195 | + <configuration> |
| 196 | + <includes> |
| 197 | + <include>**/*Tests.java</include> |
| 198 | + <include>**/*Test.java</include> |
| 199 | + </includes> |
| 200 | + </configuration> |
| 201 | + </plugin> |
| 202 | + |
175 | 203 | </plugins>
|
176 | 204 | </build>
|
177 | 205 | </project>
|
0 commit comments