-
Notifications
You must be signed in to change notification settings - Fork 37
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
Use gson instead of the jackson library for json operations #30
Conversation
I'll check later if I need to add the gson license. |
TLC includes other licenses such as |
Thanks o/ I have already replaced everything from Jackson with Gson (including the jars) and now added the Gson license. |
It replaces the jackson dependencies by the gson one so we have a compatible license (see issue link above). It's a very direct conversion, I've even maintained method names like `getArrayNode` or `getObjectNode`, it does not appear to be worth to change it to follow the implementation classes names.
Merged with minor adjustments in 90f3562. Thanks! |
Fixes #29.
It replaces the jackson dependencies by the gson one so we have
a more compatible license (see issue link above).
It's a very direct conversion, I've even maintained method names like
getArrayNode
orgetObjectNode
, it does not appear to be worth tochange it to follow the implementation classes names.