michaellavelle / spring-data-dynamodb

Simplifies the development of creating an Amazon DynamoDB-based Java data access layer
https://derjust.github.io/spring-data-dynamodb/
Apache License 2.0
169 stars 284 forks source link

Dependency version updated for hibernate-validator to resolve conflict with javax.validation:validation-api:1.1.0.Final #61

Closed daquino closed 9 years ago

daquino commented 9 years ago

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.

This should fix #60

michaellavelle commented 9 years ago

Thank you for raising this and for the pull request - much appreciated!