Skip to content

Commit

Permalink
fix: Update zookeeper version to avoid CVE (kserve#128)
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Hill <[email protected]>
  • Loading branch information
njhill authored and spolti committed Jan 11, 2024
1 parent f325afb commit 594d3df
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@
<bouncycastle-version>1.70</bouncycastle-version>
<junit-version>5.9.3</junit-version>

<zookeeper-version>3.7.2</zookeeper-version>
<curator-version>5.3.0</curator-version>

<dockerhome>${project.build.directory}/dockerhome</dockerhome>
<skipTests>false</skipTests>
</properties>
Expand Down Expand Up @@ -459,7 +462,7 @@
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-test</artifactId>
<version>2.13.0</version>
<version>${curator-version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -524,6 +527,17 @@
<artifactId>libthrift</artifactId>
<version>${thrift-version}</version>
</dependency>
<dependency>
<!-- override litelinks' versions with newer to avoid CVE -->
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>${zookeeper-version}</version>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
<version>${curator-version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>

0 comments on commit 594d3df

Please sign in to comment.