Open durm opened 5 years ago
subscribing
This is now broken due to incompatible definition of "due_date" property in GitlabIssue
POJO.
It should NOT mix java.util.Date
with java.time.LocalDate
: one or the other should be used; and if LocalDate
, then suitable deserializer AND serializer must be registered either through annotations on POJO definition, or by registering JavaTimeModule
from jackson-datatype-jsr310
(which is already depended on via Maven and/or Gradle definitions).
Also keep in mind that changing definition of property types of GitlabIssue
WILL break any code that is using it already (possibly via transitive dependencies) -- this is breaking change from API perspective.