Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit a34cc2b

Browse files
committed
[fix][*][*]: update deps versions to avoid the vulnerabilities
1 parent 9f47529 commit a34cc2b

File tree

1 file changed

+59
-5
lines changed

1 file changed

+59
-5
lines changed

pom.xml

Lines changed: 59 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.7.16</version>
8+
<version>2.7.18</version>
99
<relativePath/>
1010
</parent>
1111
<packaging>pom</packaging>
@@ -20,22 +20,24 @@
2020
<properties>
2121
<java.version>8</java.version>
2222
<pluginserver.version>0.2.2</pluginserver.version>
23-
<grpc-starter.version>2.13.1.RELEASE</grpc-starter.version>
23+
<grpc-starter.version>2.15.0.RELEASE</grpc-starter.version>
2424
<netty-tcnative-boringssl-static.version>2.0.59.Final</netty-tcnative-boringssl-static.version>
2525
<protobuf.version>3.19.1</protobuf.version>
2626
<protobuf-plugin.version>0.6.1</protobuf-plugin.version>
27-
<grpc.version>1.42.2</grpc.version>
27+
<grpc.version>1.62.2</grpc.version>
2828
<jakarta.annotation-api.version>1.3.5</jakarta.annotation-api.version>
2929
<junit.version>4.13.2</junit.version>
3030
<antchain-bridge.sdk.version>0.2.1</antchain-bridge.sdk.version>
3131
<jline.version>3.3.0</jline.version>
3232
<groovy.version>3.0.17</groovy.version>
3333
<commons-cli.version>1.5.0</commons-cli.version>
34-
<hutool.version>5.8.10</hutool.version>
34+
<hutool.version>5.8.26</hutool.version>
3535
<fastjson.version>1.2.83_noneautotype</fastjson.version>
36-
<pf4j.version>3.8.0</pf4j.version>
36+
<pf4j.version>3.10.0</pf4j.version>
3737
<slf4j.version>1.7.28</slf4j.version>
3838
<jetty.alpnAgent.version>2.0.0</jetty.alpnAgent.version>
39+
<snake.yaml.version>2.2</snake.yaml.version>
40+
<logback.classic.version>1.2.13</logback.classic.version>
3941
<jetty.alpnAgent.path>${settings.localRepository}/org/mortbay/jetty/alpn/jetty-alpn-agent/${jetty.alpnAgent.version}/jetty-alpn-agent-${jetty.alpnAgent.version}.jar</jetty.alpnAgent.path>
4042
</properties>
4143

@@ -68,6 +70,26 @@
6870
<artifactId>netty-tcnative-boringssl-static</artifactId>
6971
<version>${netty-tcnative-boringssl-static.version}</version>
7072
</dependency>
73+
<dependency>
74+
<groupId>io.grpc</groupId>
75+
<artifactId>grpc-core</artifactId>
76+
<version>${grpc.version}</version>
77+
</dependency>
78+
<dependency>
79+
<groupId>io.grpc</groupId>
80+
<artifactId>grpc-inprocess</artifactId>
81+
<version>${grpc.version}</version>
82+
</dependency>
83+
<dependency>
84+
<groupId>io.grpc</groupId>
85+
<artifactId>grpc-services</artifactId>
86+
<version>${grpc.version}</version>
87+
</dependency>
88+
<dependency>
89+
<groupId>io.grpc</groupId>
90+
<artifactId>grpc-api</artifactId>
91+
<version>${grpc.version}</version>
92+
</dependency>
7193
<dependency>
7294
<groupId>io.grpc</groupId>
7395
<artifactId>grpc-netty-shaded</artifactId>
@@ -170,9 +192,41 @@
170192
</dependencyManagement>
171193

172194
<dependencies>
195+
<dependency>
196+
<groupId>org.yaml</groupId>
197+
<artifactId>snakeyaml</artifactId>
198+
<version>${snake.yaml.version}</version>
199+
</dependency>
200+
<dependency>
201+
<groupId>ch.qos.logback</groupId>
202+
<artifactId>logback-core</artifactId>
203+
<version>${logback.classic.version}</version>
204+
</dependency>
205+
<dependency>
206+
<groupId>ch.qos.logback</groupId>
207+
<artifactId>logback-classic</artifactId>
208+
<version>${logback.classic.version}</version>
209+
<exclusions>
210+
<exclusion>
211+
<groupId>ch.qos.logback</groupId>
212+
<artifactId>logback-core</artifactId>
213+
</exclusion>
214+
</exclusions>
215+
</dependency>
216+
173217
<dependency>
174218
<groupId>org.springframework.boot</groupId>
175219
<artifactId>spring-boot-starter</artifactId>
220+
<exclusions>
221+
<exclusion>
222+
<groupId>org.yaml</groupId>
223+
<artifactId>snakeyaml</artifactId>
224+
</exclusion>
225+
<exclusion>
226+
<groupId>ch.qos.logback</groupId>
227+
<artifactId>logback-classic</artifactId>
228+
</exclusion>
229+
</exclusions>
176230
</dependency>
177231
<dependency>
178232
<groupId>org.projectlombok</groupId>

0 commit comments

Comments
 (0)