How can I add Boon or Jackson JSON parsers to Android project with Gradle?

JsonJacksonGsonAndroid Gradle-Plugin

Json Problem Overview


I would like to know how can I add Boon or Jackson parser to an android project using Gradle?

I found how to do so with GSON but couldn't find anything with Boon or Jackson.

Json Solutions


Solution 1 - Json

@Baldy answer is the same as:

implementation 'com.fasterxml.jackson.core:jackson-core:2.10.1'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.10.1'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.10.1'

Following android studio conventions. You can find the up to date version at: Maven Central Repository.

Solution 2 - Json

Here's what have in my dependencies section in my build.gradle file for Jackson:

compile (
    [group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.4.1'],
    [group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.4.1'],
    [group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.4.1']
)

If you're trying to use jax-rs, you'll also need a few more:

    [group: 'com.fasterxml.jackson.jaxrs', name: 'jackson-jaxrs-base', version: '2.4.1'],
    [group: 'com.fasterxml.jackson.jaxrs', name: 'jackson-jaxrs-json-provider', version: '2.4.1'],
    [group: 'com.fasterxml.jackson.module', name: 'jackson-module-jaxb-annotations', version: '2.4.1']

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionYosi199View Question on Stackoverflow
Solution 1 - JsonRenato ProbstView Answer on Stackoverflow
Solution 2 - JsonBaldyView Answer on Stackoverflow