Skip to content

Commit a997686

Browse files
authored
fix: Update zookeeper version to avoid CVE (#128)
Signed-off-by: Nick Hill <[email protected]>
1 parent 121c2d4 commit a997686

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

pom.xml

+15-1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@
7777
<bouncycastle-version>1.74</bouncycastle-version>
7878
<junit-version>5.10.1</junit-version>
7979

80+
<zookeeper-version>3.7.2</zookeeper-version>
81+
<curator-version>5.3.0</curator-version>
82+
8083
<dockerhome>${project.build.directory}/dockerhome</dockerhome>
8184
<skipTests>false</skipTests>
8285
</properties>
@@ -459,7 +462,7 @@
459462
<dependency>
460463
<groupId>org.apache.curator</groupId>
461464
<artifactId>curator-test</artifactId>
462-
<version>2.13.0</version>
465+
<version>${curator-version}</version>
463466
<scope>test</scope>
464467
</dependency>
465468
<dependency>
@@ -524,6 +527,17 @@
524527
<artifactId>libthrift</artifactId>
525528
<version>${thrift-version}</version>
526529
</dependency>
530+
<dependency>
531+
<!-- override litelinks' versions with newer to avoid CVE -->
532+
<groupId>org.apache.zookeeper</groupId>
533+
<artifactId>zookeeper</artifactId>
534+
<version>${zookeeper-version}</version>
535+
</dependency>
536+
<dependency>
537+
<groupId>org.apache.curator</groupId>
538+
<artifactId>curator-recipes</artifactId>
539+
<version>${curator-version}</version>
540+
</dependency>
527541
</dependencies>
528542
</dependencyManagement>
529543
</project>

0 commit comments

Comments
 (0)