Skip to content

Commit

Permalink
Fix CVE dependency issue (#298)
Browse files Browse the repository at this point in the history
* Fix CVE dependency issue

* Update pom.xml
  • Loading branch information
CVEDetect authored Sep 27, 2024
1 parent c689751 commit b315c49
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion kairosdb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
Expand Down Expand Up @@ -85,4 +90,4 @@
</plugins>
</build>

</project>
</project>
7 changes: 6 additions & 1 deletion tdengine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
<groupId>com.taosdata.jdbc</groupId>
<artifactId>taos-jdbcdriver</artifactId>
<version>2.0.32</version>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
</dependency>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down Expand Up @@ -78,4 +83,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit b315c49

Please sign in to comment.