Skip to content

Commit 9ba7da9

Browse files
committed
Fix dependencies and CVE vulnerabilities
* Remove `validation-api` dependency because it is provide by `hibernate-validator` and violates classed duplication. * Bump `spring` version because of CVE vulnerability. * Bump `commons-beanutils` version because of `CVE-2019-10086` vulnerability.
1 parent 68791b4 commit 9ba7da9

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

pom.xml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6262
<maven.compiler.source>1.8</maven.compiler.source>
6363
<maven.compiler.target>1.8</maven.compiler.target>
64-
<spring.version>5.1.8.RELEASE</spring.version>
64+
<spring.version>5.2.5.RELEASE</spring.version>
6565
<postgresql.version>42.2.6</postgresql.version>
6666
</properties>
6767

@@ -89,19 +89,14 @@
8989
<dependency>
9090
<groupId>commons-beanutils</groupId>
9191
<artifactId>commons-beanutils</artifactId>
92-
<version>1.9.3</version>
92+
<version>1.9.4</version>
9393
<exclusions>
9494
<exclusion>
9595
<groupId>commons-logging</groupId>
9696
<artifactId>commons-logging</artifactId>
9797
</exclusion>
9898
</exclusions>
9999
</dependency>
100-
<dependency>
101-
<groupId>javax.validation</groupId>
102-
<artifactId>validation-api</artifactId>
103-
<version>2.0.1.Final</version>
104-
</dependency>
105100
<dependency>
106101
<groupId>org.hibernate.validator</groupId>
107102
<artifactId>hibernate-validator</artifactId>

0 commit comments

Comments
 (0)