Skip to content

Commit 4282372

Browse files
committed
Previously, the project depended on org.hibernate:hibernate-validator:4.2.0.Final
and javax.validation:validation-api:1.1.0.Final. The hibernate-validator dependency also depends on javax.validation:validation-api:1.0.0.GA. As a result, both of these depdencies clash and cause run-time errors when trying to use this library. I've updated the hibernate-validator dependency to use 5.1.3.GA which uses the same version declared in this project. I've tested using this new modification to another example project, and I don't receive the run-time errors that were showing a conflict between the two dependencies.
1 parent 4778515 commit 4282372

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>org.socialsignin</groupId>
77
<artifactId>spring-data-dynamodb</artifactId>
8-
<version>1.0.3-SNAPSHOT</version>
8+
<version>1.0.4-SNAPSHOT</version>
99
<name>Spring Data DynamoDb</name>
1010
<description>Spring Data module providing support for DynamoDb repositories.</description>
1111
<url>http://github.com/michaellavelle/spring-data-dynamodb</url>
@@ -90,7 +90,7 @@
9090
<dependency>
9191
<groupId>org.hibernate</groupId>
9292
<artifactId>hibernate-validator</artifactId>
93-
<version>4.2.0.Final</version>
93+
<version>5.1.3.Final</version>
9494
</dependency>
9595

9696
<!-- APACHE -->
@@ -222,7 +222,7 @@
222222
</execution>
223223
</executions>
224224
</plugin>
225-
<!--
225+
<!--
226226
<plugin>
227227
<groupId>com.jcabi</groupId>
228228
<artifactId>jcabi-dynamodb-maven-plugin</artifactId>

0 commit comments

Comments
 (0)