Does XStream supports Java 8's java.time.* classes such as LocalDate and
LocalDateTime?
Out of the box or do we need to add a separate dependency?
Context:
java.util.Date is deprecated (and fundamentally broken).
java.time is the standardization of Joda time in java 8, so it is
joda++ and java.util.Date += 1000.
We have a PR to add such converters in our own package (org.kie.internal)
https://github.com/droolsjbpm/droolsjbpm-knowledge/pull/198/files#diff-dddeb33405131a27ba340f8e91b7b934R16
but I think this code belongs in the XStream project to avoid
duplication in other projects and improve quality / reduce maintenance.