Skip to content

Commit ce250fb

Browse files
committed
[hotfix-36198] redis async side shade netty
1 parent 7a001f8 commit ce250fb

3 files changed

Lines changed: 7 additions & 9 deletions

File tree

hbase/hbase-side/hbase-all-side/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@
3333
<groupId>io.netty</groupId>
3434
<artifactId>netty</artifactId>
3535
</exclusion>
36-
<exclusion>
37-
<artifactId>netty-all</artifactId>
38-
<groupId>io.netty</groupId>
39-
</exclusion>
4036
</exclusions>
4137
</dependency>
4238
</dependencies>

hbase/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,8 @@
3838
<groupId>log4j</groupId>
3939
</exclusion>
4040
<exclusion>
41-
<artifactId>netty-all</artifactId>
4241
<groupId>io.netty</groupId>
43-
</exclusion>
44-
<exclusion>
4542
<artifactId>netty</artifactId>
46-
<groupId>io.netty</groupId>
4743
</exclusion>
4844
</exclusions>
4945
</dependency>

redis5/redis5-side/redis-async-side/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,20 @@
3535
<plugin>
3636
<groupId>org.apache.maven.plugins</groupId>
3737
<artifactId>maven-shade-plugin</artifactId>
38-
<version>1.4</version>
38+
<version>3.0.0</version>
3939
<executions>
4040
<execution>
4141
<phase>package</phase>
4242
<goals>
4343
<goal>shade</goal>
4444
</goals>
4545
<configuration>
46+
<relocations>
47+
<relocation>
48+
<pattern>io.netty</pattern>
49+
<shadedPattern>com.dtstack.flink.sql.side.redis.io.netty</shadedPattern>
50+
</relocation>
51+
</relocations>
4652
<artifactSet>
4753
<excludes>
4854

0 commit comments

Comments
 (0)