Skip to content

Commit b8a34c5

Browse files
committed
upgrade to spring boot 3.2.0 and use undertow
1 parent 8802328 commit b8a34c5

File tree

1 file changed

+28
-5
lines changed

1 file changed

+28
-5
lines changed

pom.xml

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.1.5</version>
9+
<version>3.2.0</version>
1010
<relativePath/> <!-- lookup parent from repository -->
1111
</parent>
1212

@@ -20,19 +20,42 @@
2020
<properties>
2121
<java.version>21</java.version>
2222
<snakeyaml.version>2.2</snakeyaml.version>
23-
<springCloud.version>4.0.4</springCloud.version>
23+
<spring-cloud.version>4.0.4</spring-cloud.version>
2424
</properties>
2525

2626
<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+
2750
<dependency>
2851
<groupId>org.springframework.boot</groupId>
2952
<artifactId>spring-boot-starter-actuator</artifactId>
3053
</dependency>
3154

3255
<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>
3659
</dependency>
3760
</dependencies>
3861

0 commit comments

Comments
 (0)