Adding Jackson dependency to Java Gradle Project

If you want to add Jackson Library dependency to your Java Gradle project follow the below steps,

Add jackson dependency in Java Gradle Project
  1. Open the build.gradle file in your project,
  2. under dependencies add the the below,
    implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.13.4'

    You can find the latest version from https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind

  3. Save the file and do a Gradle refresh.

Comments & Discussion

Facing issues? Have questions? Post them here! We're happy to help!