|
13 | 13 |
|
14 | 14 | <properties> |
15 | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
16 | | - <spring.version>6.1.4</spring.version> |
17 | 16 |
|
18 | 17 | <!-- to match spring JDK version --> |
19 | 18 | <main.java.version>17</main.java.version> |
20 | 19 | </properties> |
21 | 20 |
|
| 21 | + <dependencyManagement> |
| 22 | + <dependencies> |
| 23 | + <dependency> |
| 24 | + <groupId>org.springframework.boot</groupId> |
| 25 | + <artifactId>spring-boot-dependencies</artifactId> |
| 26 | + <version>${springboot.version}</version> |
| 27 | + <type>pom</type> |
| 28 | + <scope>import</scope> |
| 29 | + </dependency> |
| 30 | + </dependencies> |
| 31 | + </dependencyManagement> |
| 32 | + |
22 | 33 | <dependencies> |
23 | 34 |
|
24 | 35 | <!-- spring --> |
25 | 36 |
|
26 | 37 | <dependency> |
27 | 38 | <groupId>org.springframework</groupId> |
28 | 39 | <artifactId>spring-context</artifactId> |
29 | | - <version>${spring.version}</version> |
30 | 40 | </dependency> |
31 | 41 | <dependency> |
32 | 42 | <groupId>org.springframework</groupId> |
33 | 43 | <artifactId>spring-aop</artifactId> |
34 | | - <version>${spring.version}</version> |
35 | 44 | </dependency> |
36 | 45 | <dependency> |
37 | 46 | <groupId>org.springframework.data</groupId> |
38 | 47 | <artifactId>spring-data-r2dbc</artifactId> |
39 | | - <version>3.2.3</version> |
40 | 48 | </dependency> |
41 | 49 |
|
42 | 50 | <dependency> |
43 | 51 | <groupId>org.projectlombok</groupId> |
44 | 52 | <artifactId>lombok</artifactId> |
45 | | - <version>1.18.32</version> |
46 | 53 | <scope>provided</scope> |
47 | 54 | </dependency> |
48 | 55 |
|
|
55 | 62 | <dependency> |
56 | 63 | <groupId>io.r2dbc</groupId> |
57 | 64 | <artifactId>r2dbc-h2</artifactId> |
58 | | - <version>${r2dbc.version}</version> |
59 | 65 | </dependency> |
60 | 66 | <dependency> |
61 | 67 | <groupId>com.h2database</groupId> |
|
77 | 83 | <dependency> |
78 | 84 | <groupId>org.springframework</groupId> |
79 | 85 | <artifactId>spring-test</artifactId> |
80 | | - <version>${spring.version}</version> |
81 | 86 | <scope>test</scope> |
82 | 87 | </dependency> |
83 | 88 | <dependency> |
|
0 commit comments