Skip to content

Commit

Permalink
Merge pull request opendatahub-io#52 from spolti/zookeper
Browse files Browse the repository at this point in the history
fix: Update zookeeper version to avoid CVE (kserve#128)
  • Loading branch information
openshift-merge-bot[bot] authored Jan 11, 2024
2 parents 391c021 + 594d3df commit 934dd29
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.74</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 934dd29

Please sign in to comment.