-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Option to use java-time instead of joda #411
Comments
I think just leave dates alone and/or make the conversion extensible. interested in a PR? if so, is a breaking change (ie no joda dep) ok? |
PR here #431 In the meantime, it's quite straightforward to add one extend-protocol of IMarshall and one alter-var-root of to-date in your own project. |
I also support moving to standard libraries and dropping extra code. |
yeah I actually stopped using Amazonica and use the official java v2 client directly - not difficult from Clojure & it's well documented |
This'd be very nice to stop us from having to pull in |
Currently Amazonica converts
java.util.Date
s toorg.joda.time.DateTime
s. Now that we have the time API from Java 8, and good support for it in clojure, it would be great to have an option to work with the native classes, or at least to leavejava.util.Date
s as they are without conversion.The text was updated successfully, but these errors were encountered: