Skip to content

Commit

Permalink
CCMSG-1688: CVE fix for Guava dependency (#522)
Browse files Browse the repository at this point in the history
* CCMSG-1688: CVE fix for Guava dependency

* Update pom.xml

Co-authored-by: arihant-confluent <105902781+arihant-confluent@users.noreply.github.com>
  • Loading branch information
pbadani and arihant-confluent committed Jul 24, 2022
1 parent 131ea37 commit c0164c3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions kafka-connect-s3/pom.xml
Expand Up @@ -92,6 +92,12 @@
<version>${s3mock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
6 changes: 5 additions & 1 deletion pom.xml
Expand Up @@ -175,7 +175,7 @@
<dependency>
<groupId>io.confluent</groupId>
<artifactId>confluent-log4j</artifactId>
<version>${confluent-log4j.version}</version>
<version>${confluent.log4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -196,6 +196,10 @@
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>
Expand Down

0 comments on commit c0164c3

Please sign in to comment.