|
6 | 6 | <parent>
|
7 | 7 | <groupId>org.springframework.boot</groupId>
|
8 | 8 | <artifactId>spring-boot-starter-parent</artifactId>
|
9 |
| - <version>3.1.5</version> |
| 9 | + <version>3.2.0</version> |
10 | 10 | <relativePath/> <!-- lookup parent from repository -->
|
11 | 11 | </parent>
|
12 | 12 |
|
|
20 | 20 | <properties>
|
21 | 21 | <java.version>21</java.version>
|
22 | 22 | <snakeyaml.version>2.2</snakeyaml.version>
|
23 |
| - <springCloud.version>4.0.4</springCloud.version> |
| 23 | + <spring-cloud.version>4.0.4</spring-cloud.version> |
24 | 24 | </properties>
|
25 | 25 |
|
26 | 26 | <dependencies>
|
| 27 | + <dependency> |
| 28 | + <groupId>org.springframework.cloud</groupId> |
| 29 | + <artifactId>spring-cloud-config-server</artifactId> |
| 30 | + <version>${spring-cloud.version}</version> |
| 31 | + <exclusions> |
| 32 | + <exclusion> |
| 33 | + <groupId>org.springframework.boot</groupId> |
| 34 | + <artifactId>spring-boot-starter-tomcat</artifactId> |
| 35 | + </exclusion> |
| 36 | + </exclusions> |
| 37 | + </dependency> |
| 38 | + |
| 39 | + <dependency> |
| 40 | + <groupId>org.springframework.boot</groupId> |
| 41 | + <artifactId>spring-boot-starter-undertow</artifactId> |
| 42 | + <exclusions> |
| 43 | + <exclusion> |
| 44 | + <groupId>io.undertow</groupId> |
| 45 | + <artifactId>undertow-websockets-jsr</artifactId> |
| 46 | + </exclusion> |
| 47 | + </exclusions> |
| 48 | + </dependency> |
| 49 | + |
27 | 50 | <dependency>
|
28 | 51 | <groupId>org.springframework.boot</groupId>
|
29 | 52 | <artifactId>spring-boot-starter-actuator</artifactId>
|
30 | 53 | </dependency>
|
31 | 54 |
|
32 | 55 | <dependency>
|
33 |
| - <groupId>org.springframework.cloud</groupId> |
34 |
| - <artifactId>spring-cloud-config-server</artifactId> |
35 |
| - <version>${springCloud.version}</version> |
| 56 | + <groupId>org.springframework.boot</groupId> |
| 57 | + <artifactId>spring-boot-configuration-processor</artifactId> |
| 58 | + <scope>provided</scope> |
36 | 59 | </dependency>
|
37 | 60 | </dependencies>
|
38 | 61 |
|
|
0 commit comments