Skip to content

Commit

Permalink
Use spring-boot-starter-jetty instead of spring-boot-starter-tomcat
Browse files Browse the repository at this point in the history
  • Loading branch information
jbonofre committed May 13, 2022
1 parent 3242ccf commit 8fc00d8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions demo/pet-clinic/spring-boot-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,17 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring-boot.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down

0 comments on commit 8fc00d8

Please sign in to comment.