Skip to content

Commit 219b6fe

Browse files
author
wlanboy
committed
Spring Boot upgrade to 3.5.7. Moved to jetty webcontainer.
1 parent 096c2ce commit 219b6fe

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

pom.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-parent -->
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.2.5</version>
9+
<version>3.5.7</version>
1010
<relativePath/> <!-- lookup parent from repository -->
1111
</parent>
1212

@@ -25,7 +25,17 @@
2525
<dependency>
2626
<groupId>org.springframework.boot</groupId>
2727
<artifactId>spring-boot-starter-web</artifactId>
28+
<exclusions>
29+
<exclusion>
30+
<groupId>org.springframework.boot</groupId>
31+
<artifactId>spring-boot-starter-tomcat</artifactId>
32+
</exclusion>
33+
</exclusions>
2834
</dependency>
35+
<dependency>
36+
<groupId>org.springframework.boot</groupId>
37+
<artifactId>spring-boot-starter-jetty</artifactId>
38+
</dependency>
2939
<dependency>
3040
<groupId>org.springframework.boot</groupId>
3141
<artifactId>spring-boot-starter-actuator</artifactId>

0 commit comments

Comments
 (0)