Skip to content

Commit

Permalink
[samples] Fix spring-boot-3-web dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fpapon committed Dec 20, 2023
1 parent 6ecb862 commit 8a11db4
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion samples/spring-boot-3-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,31 @@
</dependency>

<!-- Spring Boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
<version>${spring-boot3.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>${spring-boot3.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring-boot3.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
<version>${spring-boot3.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
<version>${spring-boot3.version}</version>
<optional>false</optional>
</dependency>

<!-- below dependencies may not be necessary in "real" applications -->
Expand Down

0 comments on commit 8a11db4

Please sign in to comment.