Skip to content

Commit c98f5fb

Browse files
Merge pull request #196 from Malarvzh/BeanUtilVersionChange
Fixing vulnerability in the BeanUtil library.
2 parents 0486ee9 + 6822fee commit c98f5fb

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

ipp-v3-java-devkit/pom.xml

+14-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,12 @@
8484
<exclusion>
8585
<groupId>commons-collections</groupId>
8686
<artifactId>commons-collections</artifactId>
87-
</exclusion>
87+
</exclusion>
88+
<!-- Fix to exclude commons-beanutils 1.7 due to security vulnerability and bring in 1.9.4-->
89+
<exclusion>
90+
<groupId>commons-beanutils</groupId>
91+
<artifactId>commons-beanutils</artifactId>
92+
</exclusion>
8893
</exclusions>
8994
</dependency>
9095
<!-- https://mvnrepository.com/artifact/commons-collections/commons-collections -->
@@ -93,7 +98,14 @@
9398
<groupId>commons-collections</groupId>
9499
<artifactId>commons-collections</artifactId>
95100
<version>3.2.2</version>
96-
</dependency>
101+
</dependency>
102+
<!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
103+
<!-- 1.9.4 fixes vulnerability -->
104+
<dependency>
105+
<groupId>commons-beanutils</groupId>
106+
<artifactId>commons-beanutils</artifactId>
107+
<version>1.9.4</version>
108+
</dependency>
97109
<dependency>
98110
<groupId>commons-io</groupId>
99111
<artifactId>commons-io</artifactId>

0 commit comments

Comments
 (0)