Skip to content

Commit

Permalink
Fix dependency convergence
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesDuboisSAP committed Sep 18, 2024
1 parent 0469bc4 commit 38d0a94
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions sample-code/spring-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<version>${spring-boot.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
Expand Down Expand Up @@ -127,6 +133,16 @@
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring-boot.version}</version>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</exclusion>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- scope "provided" -->
<dependency>
Expand Down

0 comments on commit 38d0a94

Please sign in to comment.