|
35 | 35 | <name>Java Design Patterns</name>
|
36 | 36 | <description>Java Design Patterns</description>
|
37 | 37 | <properties>
|
| 38 | + <!-- General properties --> |
38 | 39 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
39 |
| - <sonar-maven-plugin.version>5.0.0.4389</sonar-maven-plugin.version> |
| 40 | + |
| 41 | + <!-- Spring Boot related dependencies. Keep these in sync! --> |
40 | 42 | <spring-boot.version>3.4.4</spring-boot.version>
|
| 43 | + <junit.version>5.11.4</junit.version> |
| 44 | + <mockito.version>5.14.2</mockito.version> |
| 45 | + <logback.version>1.5.18</logback.version> |
| 46 | + <slf4j.version>2.0.17</slf4j.version> |
| 47 | + |
| 48 | + <!-- Other dependencies --> |
41 | 49 | <jacoco.version>0.8.12</jacoco.version>
|
42 | 50 | <commons-dbcp.version>1.4</commons-dbcp.version>
|
43 | 51 | <htmlunit.version>4.7.0</htmlunit.version>
|
44 | 52 | <gson.version>2.11.0</gson.version>
|
45 | 53 | <guice.version>6.0.0</guice.version>
|
46 | 54 | <system-lambda.version>1.1.0</system-lambda.version>
|
47 |
| - <maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version> |
48 |
| - <license-maven-plugin.version>4.6</license-maven-plugin.version> |
49 |
| - <urm-maven-plugin.version>2.1.1</urm-maven-plugin.version> |
50 |
| - <maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version> |
51 | 55 | <lombok.version>1.18.36</lombok.version>
|
52 |
| - <junit.version>5.11.4</junit.version> |
53 |
| - <slf4j.version>2.0.17</slf4j.version> |
54 |
| - <logback.version>1.5.18</logback.version> |
55 |
| - <mockito.version>5.16.1</mockito.version> |
56 | 56 | <mongo.version>5.4.0</mongo.version>
|
57 | 57 | <bson.version>5.4.0</bson.version>
|
58 | 58 | <h2.version>2.3.232</h2.version>
|
| 59 | + |
| 60 | + <!-- Plugins --> |
| 61 | + <maven-surefire-plugin.version>3.5.2</maven-surefire-plugin.version> |
| 62 | + <license-maven-plugin.version>4.6</license-maven-plugin.version> |
| 63 | + <maven-compiler-plugin.version>3.14.0</maven-compiler-plugin.version> |
| 64 | + |
59 | 65 | <!-- SonarCloud -->
|
| 66 | + <sonar-maven-plugin.version>5.0.0.4389</sonar-maven-plugin.version> |
60 | 67 | <sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
61 | 68 | <sonar.organization>iluwatar</sonar.organization>
|
62 | 69 | <sonar.projectKey>iluwatar_java-design-patterns</sonar.projectKey>
|
|
308 | 315 | <version>${junit.version}</version>
|
309 | 316 | <scope>test</scope>
|
310 | 317 | </dependency>
|
| 318 | + <dependency> |
| 319 | + <groupId>org.junit.jupiter</groupId> |
| 320 | + <artifactId>junit-jupiter-params</artifactId> |
| 321 | + <version>${junit.version}</version> |
| 322 | + <scope>test</scope> |
| 323 | + </dependency> |
311 | 324 | <dependency>
|
312 | 325 | <groupId>org.junit.jupiter</groupId>
|
313 | 326 | <artifactId>junit-jupiter-migrationsupport</artifactId>
|
|
0 commit comments