Skip to content

Commit 6391059

Browse files
committed
Use commons-collection 3.2.2 instead of 3.2.1
1 parent 623d2e4 commit 6391059

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

ipp-v3-java-devkit/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,24 @@
7070
<artifactId>signpost-commonshttp4</artifactId>
7171
<version>1.2</version>
7272
</dependency>
73+
<!-- Exclude commons-collection 3.2.1 due to security vulnerability and bring in 3.2.2 below that has the fix -->
7374
<dependency>
7475
<groupId>commons-configuration</groupId>
7576
<artifactId>commons-configuration</artifactId>
7677
<version>1.6</version>
78+
<exclusions>
79+
<exclusion>
80+
<groupId>commons-collections</groupId>
81+
<artifactId>commons-collections</artifactId>
82+
</exclusion>
83+
</exclusions>
84+
</dependency>
85+
<!-- https://mvnrepository.com/artifact/commons-collections/commons-collections -->
86+
<!-- As per 3.2.2 fixes the vulnerability https://commons.apache.org/proper/commons-collections/security-reports.html -->
87+
<dependency>
88+
<groupId>commons-collections</groupId>
89+
<artifactId>commons-collections</artifactId>
90+
<version>3.2.2</version>
7791
</dependency>
7892
<dependency>
7993
<groupId>commons-io</groupId>

0 commit comments

Comments
 (0)