kclay / rethink-scala

Scala Driver for RethinkDB
Other
100 stars 24 forks source link

Jackson version incompatibility #41

Closed gmethvin closed 9 years ago

gmethvin commented 9 years ago

Just was testing an app with Play 2.4.0-RC2. I get the error:

com.fasterxml.jackson.databind.JsonMappingException: Could not find creator property with name 'id' (in class accounts.GoogleAccount)

Based on fasterxml/jackson-module-scala#177, it seems like this is due to the fact that Play now uses Jackson 2.5 and rethink-scala requires the (incompatible) jackson-module-scala 2.4.1. Explicitly overriding the jackson dependencies in build.sbt to Jackson 2.4.1 eliminates that error, but I'm not sure if it will cause other problems. I'd suggest upgrading to the latest jackson and jackson-module-scala versions if possible.

gmethvin commented 9 years ago

I'll close this since it seems like it was fixed by 9742102