Skip to content

Commit

Permalink
chore: fix SBOM failure in 24.1 (#4445)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZheSun88 authored Sep 1, 2023
1 parent edb12d6 commit 9bf1a3b
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion vaadin-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,27 @@
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-websocket</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- CVE-2023-41080 UNTIL new Springboot with tomcat version bump -->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<version>10.1.13</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-websocket</artifactId>
<version>10.1.13</version>
</dependency>
<!-- End Spring -->

</dependencies>
</project>

0 comments on commit 9bf1a3b

Please sign in to comment.