Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add spring-boot-starter dependency to pom.xml
Browse files Browse the repository at this point in the history
This commit introduces the spring-boot-starter dependency to both `jte-spring-boot-starter-2/pom.xml` and `jte-spring-boot-starter-3/pom.xml`. This inclusion ensures that the necessary Spring Boot components are available for these projects, facilitating easier configuration and setup.
tschuehly committed Oct 1, 2024
1 parent bbd08ae commit 2035d79
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions jte-spring-boot-starter-2/pom.xml
Original file line number Diff line number Diff line change
@@ -36,6 +36,10 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
4 changes: 4 additions & 0 deletions jte-spring-boot-starter-3/pom.xml
Original file line number Diff line number Diff line change
@@ -36,6 +36,10 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>

0 comments on commit 2035d79

Please sign in to comment.