prismicio-community / java-kit

Community maintained development kit for Prismic and the Java language
https://prismic.io
15 stars 38 forks source link

[enhancement] Replace Joda-Time with standard Java 8 Time API #66

Closed damienbeaufils closed 6 years ago

damienbeaufils commented 6 years ago

Hello Prismic team,

Since Java 8, Joda-Time is deprecated in favor of standard Java Time API (JSR-310). This PR removes Joda-TIme dependency and use java.time types instead. org.joda.time.DateTime has been replaced by java.time.ZonedDateTime, and org.joda.time.LocalDate by java.time.LocalDate.

This PR depends on #64

Thanks!