|
13 | 13 | <maven.compiler.source>21</maven.compiler.source> |
14 | 14 | <maven.compiler.target>21</maven.compiler.target> |
15 | 15 | <maven.compiler.release>21</maven.compiler.release> |
| 16 | + <spring.version>7.0.0-M6</spring.version> |
| 17 | + <jackson-databind.version>2.19.1</jackson-databind.version> |
| 18 | + <junit-jupiter.version>6.0.0-M1</junit-jupiter.version> |
| 19 | + <jakarta.servlet-api.version>6.1.0</jakarta.servlet-api.version> |
| 20 | + <tomcat-embed-core.version>11.0.9</tomcat-embed-core.version> |
| 21 | + <jacoco-maven-plugin.version>0.8.13</jacoco-maven-plugin.version> |
16 | 22 | </properties> |
17 | 23 |
|
18 | 24 | <dependencies> |
19 | 25 | <dependency> |
20 | 26 | <groupId>org.springframework</groupId> |
21 | 27 | <artifactId>spring-webmvc</artifactId> |
22 | | - <version>7.0.0-M6</version> |
| 28 | + <version>${spring.version}</version> |
23 | 29 | </dependency> |
24 | 30 | <dependency> |
25 | 31 | <groupId>org.springframework</groupId> |
26 | 32 | <artifactId>spring-test</artifactId> |
27 | | - <version>7.0.0-M6</version> |
| 33 | + <version>${spring.version}</version> |
28 | 34 | <scope>test</scope> |
29 | 35 | </dependency> |
30 | 36 | <dependency> |
31 | 37 | <groupId>org.junit.jupiter</groupId> |
32 | 38 | <artifactId>junit-jupiter</artifactId> |
33 | | - <version>5.10.0</version> |
| 39 | + <version>${junit-jupiter.version}</version> |
34 | 40 | <scope>test</scope> |
35 | 41 | </dependency> |
36 | 42 | <dependency> |
37 | 43 | <groupId>com.fasterxml.jackson.core</groupId> |
38 | 44 | <artifactId>jackson-databind</artifactId> |
39 | | - <version>2.18.3</version> |
| 45 | + <version>${jackson-databind.version}</version> |
40 | 46 | </dependency> |
41 | 47 | <dependency> |
42 | 48 | <groupId>org.apache.tomcat.embed</groupId> |
43 | 49 | <artifactId>tomcat-embed-core</artifactId> |
44 | | - <version>11.0.5</version> |
| 50 | + <version>${tomcat-embed-core.version}</version> |
45 | 51 | </dependency> |
46 | 52 | <dependency> |
47 | 53 | <groupId>jakarta.servlet</groupId> |
48 | 54 | <artifactId>jakarta.servlet-api</artifactId> |
49 | | - <version>6.1.0</version> |
| 55 | + <version>${jakarta.servlet-api.version}</version> |
50 | 56 | <scope>provided</scope> |
51 | 57 | </dependency> |
52 | 58 | </dependencies> |
|
57 | 63 | <plugin> |
58 | 64 | <groupId>org.jacoco</groupId> |
59 | 65 | <artifactId>jacoco-maven-plugin</artifactId> |
60 | | - <version>0.8.10</version> |
| 66 | + <version>${jacoco-maven-plugin.version}</version> |
61 | 67 | <executions> |
62 | 68 | <execution> |
63 | 69 | <goals> |
|
0 commit comments