Skip to content

Commit

Permalink
Merge pull request #196 from Malarvzh/BeanUtilVersionChange
Browse files Browse the repository at this point in the history
Fixing vulnerability in the BeanUtil library.
  • Loading branch information
sujitharamadass authored Feb 7, 2023
2 parents 0486ee9 + 6822fee commit c98f5fb
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions ipp-v3-java-devkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,12 @@
<exclusion>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</exclusion>
</exclusion>
<!-- Fix to exclude commons-beanutils 1.7 due to security vulnerability and bring in 1.9.4-->
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-collections/commons-collections -->
Expand All @@ -93,7 +98,14 @@
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.2.2</version>
</dependency>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
<!-- 1.9.4 fixes vulnerability -->
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.4</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand Down

0 comments on commit c98f5fb

Please sign in to comment.