Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
Remove unnecessary jar packages commons-io 2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
AsinRay committed Jan 4, 2022
1 parent ad22ec6 commit d823d8f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions flink-connector-redis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,26 @@ under the License.
<version>${jedis.version}</version>
</dependency>

<!-- embedded-redis -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.kstyrc</groupId>
<artifactId>embedded-redis</artifactId>
<version>0.6</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- end of embedded-redis -->

<dependency>
<groupId>org.apache.flink</groupId>
Expand Down

0 comments on commit d823d8f

Please sign in to comment.