Skip to content

Commit 7b8e8e0

Browse files
authored
Merge pull request #1480 from daizhenyu/20240330:safecheck
Fix open source component vulnerabilities
2 parents 48ab598 + 7fe742a commit 7b8e8e0

File tree

2 files changed

+69
-2
lines changed

2 files changed

+69
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<xml.apis.version>1.4.01</xml.apis.version>
4949
<xerces.version>2.12.1</xerces.version>
5050
<snake.yaml.version>2.0</snake.yaml.version>
51-
<zookeeper.version>3.8.3</zookeeper.version>
51+
<zookeeper.version>3.8.4</zookeeper.version>
5252
<lombok.version>1.18.22</lombok.version>
5353
<asm.version>8.0.1</asm.version>
5454
<common.io.version>2.7</common.io.version>

sermant-backend/pom.xml

Lines changed: 68 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@
2525
<mockito-core.version>2.28.2</mockito-core.version>
2626
<slf4j-api.version>1.7.32</slf4j-api.version>
2727
<commons-lang3.version>3.9</commons-lang3.version>
28-
<jedis.version>4.4.0</jedis.version>
28+
<jedis.version>4.4.6</jedis.version>
2929
<powermock.version>2.0.9</powermock.version>
3030
<expiringmap.version>0.5.8</expiringmap.version>
3131
<jackson-databind.version>2.13.4.2</jackson-databind.version>
3232
<aspectjweaver.version>1.8.4</aspectjweaver.version>
33+
<tomcat-embed.version>9.0.86</tomcat-embed.version>
34+
<spring-framework.version>5.3.33</spring-framework.version>
3335
<webapp.path>${project.basedir}/src/main/webapp/frontend</webapp.path>
3436
</properties>
3537

@@ -51,6 +53,14 @@
5153
<groupId>com.fasterxml.jackson.core</groupId>
5254
<artifactId>jackson-databind</artifactId>
5355
</exclusion>
56+
<exclusion>
57+
<groupId>org.springframework</groupId>
58+
<artifactId>spring-context</artifactId>
59+
</exclusion>
60+
<exclusion>
61+
<groupId>org.springframework</groupId>
62+
<artifactId>spring-core</artifactId>
63+
</exclusion>
5464
</exclusions>
5565
</dependency>
5666
<dependency>
@@ -62,6 +72,63 @@
6272
<groupId>org.springframework.boot</groupId>
6373
<artifactId>spring-boot-starter-web</artifactId>
6474
<version>${spring-boot.version}</version>
75+
<exclusions>
76+
<exclusion>
77+
<groupId>org.apache.tomcat.embed</groupId>
78+
<artifactId>tomcat-embed-core</artifactId>
79+
</exclusion>
80+
<exclusion>
81+
<groupId>org.apache.tomcat.embed</groupId>
82+
<artifactId>tomcat-embed-el</artifactId>
83+
</exclusion>
84+
<exclusion>
85+
<groupId>org.apache.tomcat.embed</groupId>
86+
<artifactId>tomcat-embed-websocket</artifactId>
87+
</exclusion>
88+
<exclusion>
89+
<groupId>org.springframework</groupId>
90+
<artifactId>spring-web</artifactId>
91+
</exclusion>
92+
<exclusion>
93+
<groupId>org.springframework</groupId>
94+
<artifactId>spring-webmvc</artifactId>
95+
</exclusion>
96+
</exclusions>
97+
</dependency>
98+
<dependency>
99+
<groupId>org.springframework</groupId>
100+
<artifactId>spring-context</artifactId>
101+
<version>${spring-framework.version}</version>
102+
</dependency>
103+
<dependency>
104+
<groupId>org.springframework</groupId>
105+
<artifactId>spring-core</artifactId>
106+
<version>${spring-framework.version}</version>
107+
</dependency>
108+
<dependency>
109+
<groupId>org.springframework</groupId>
110+
<artifactId>spring-web</artifactId>
111+
<version>${spring-framework.version}</version>
112+
</dependency>
113+
<dependency>
114+
<groupId>org.springframework</groupId>
115+
<artifactId>spring-webmvc</artifactId>
116+
<version>${spring-framework.version}</version>
117+
</dependency>
118+
<dependency>
119+
<groupId>org.apache.tomcat.embed</groupId>
120+
<artifactId>tomcat-embed-core</artifactId>
121+
<version>${tomcat-embed.version}</version>
122+
</dependency>
123+
<dependency>
124+
<groupId>org.apache.tomcat.embed</groupId>
125+
<artifactId>tomcat-embed-el</artifactId>
126+
<version>${tomcat-embed.version}</version>
127+
</dependency>
128+
<dependency>
129+
<groupId>org.apache.tomcat.embed</groupId>
130+
<artifactId>tomcat-embed-websocket</artifactId>
131+
<version>${tomcat-embed.version}</version>
65132
</dependency>
66133
<dependency>
67134
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)