You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can't you just use java.time.LocalDateTime instead? If you really need joda-time, then I suggest you mark the dependency as compile scope and do some checks if the user has included it in their classpath.
The text was updated successfully, but these errors were encountered:
Unfortunately LocalDateTime was added in Java 8, and we need to maintain compatibility with Java 6. Because joda-time classes are exposed in our public APIs, we won't be able to make it just a compile-time dependency without a lot of customer headache.
Can't you just use
java.time.LocalDateTime
instead? If you really need joda-time, then I suggest you mark the dependency as compile scope and do some checks if the user has included it in their classpath.The text was updated successfully, but these errors were encountered: