Skip to content

Commit

Permalink
【fix】更新netty、protobuf和logback的版本,避免低版本依赖的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
HapThorin committed Jan 20, 2022
1 parent cf28068 commit 1f75203
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
16 changes: 13 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
<http.client.version>4.5.13</http.client.version>
<http.core.version>4.4.13</http.core.version>
<Java-WebSocket.version>1.5.1</Java-WebSocket.version>
<netty.version>4.1.63.Final</netty.version>
<protobuf.version>3.13.0</protobuf.version>
<netty.version>4.1.73.Final</netty.version>
<protobuf.version>3.17.3</protobuf.version>
<fastjson.version>1.2.76</fastjson.version>
<xml.apis.version>1.4.01</xml.apis.version>
<xerces.version>2.12.1</xerces.version>
Expand All @@ -35,7 +35,7 @@

<slf4j.version>1.7.30</slf4j.version>
<log4j2.version>2.17.0</log4j2.version>
<logback.version>1.2.6</logback.version>
<logback.version>1.2.9</logback.version>

<junit.version>4.12</junit.version>
<junit.jupiter.version>5.8.1</junit.jupiter.version>
Expand Down Expand Up @@ -127,6 +127,16 @@
<artifactId>netty-all</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
Expand Down
8 changes: 8 additions & 0 deletions sermant-agentcore/sermant-agentcore-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,14 @@
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
<groovy.all.version>3.0.7</groovy.all.version>
<powermock.module.junit4.version>2.0.7</powermock.module.junit4.version>
<powermock.api.mockito2.version>2.0.7</powermock.api.mockito2.version>
<netty.version>4.1.63.final</netty.version>
<grpc.version>1.36.1</grpc.version>
<protobuf.version>3.13.0</protobuf.version>
</properties>
Expand Down

0 comments on commit 1f75203

Please sign in to comment.