Skip to content

Commit

Permalink
fix(register): nacos的tomcat安全漏洞升级
Browse files Browse the repository at this point in the history
Closes #IBCXL6
  • Loading branch information
lltx committed Dec 23, 2024
1 parent c0579dd commit e87d4ba
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pig-register/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

<properties>
<nacos.version>2.4.3</nacos.version>
<tomcat.version>9.0.93</tomcat.version>
<spring-boot.version>2.7.18</spring-boot.version>
<spring-boot-admin.version>2.7.16</spring-boot-admin.version>
</properties>
Expand Down Expand Up @@ -94,6 +95,27 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- 覆盖nacos tomcat version 避免CVE-2024-24549-->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-websocket</artifactId>
<version>${tomcat.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<version>${tomcat.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-el</artifactId>
<version>${tomcat.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-annotations-api</artifactId>
<version>${tomcat.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit e87d4ba

Please sign in to comment.