Hi...
I just upgraded in my application from Dozer 5.4.0 to 6.4.1. No big issues. But I have a copy-on-reference mapping for org.joda.time.DateTime. And my unit test failed, because after the mapping the new DateTime had an newer (now) time stamp.
My configuration looked like this:
<copy-by-reference>
org.joda.time.DateTime
</copy-by-reference>
And it worked after I took away the newlines:
<copy-by-reference>org.joda.time.DateTime</copy-by-reference>
Can anyone verify this?
Thanks
Lars