Jackson annotations in the global module

We are looking to use the jsonIgnore annotation on some of our entities. However the annotation seems to only be available in the core module. How can we make is available to the global module?

Thanks!

Hi Kent,
you can add necessary dependency from Studio menu: Project Properties - Edit - Advanced.

Add dependency for the Global module:


com.fasterxml.jackson.core:jackson-annotations:2.2.3

Click OK, and confirm dependencies change. Studio will add the dependency to your build.gradle and regenerate idea project files, so you will be able to use @JsonIgnore annotation everywhere in your project.

jackson-dependency