ackson-datatype-problem.0.26.0.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-datatype-problem Show documentation
Show all versions of jackson-datatype-problem Show documentation
Add-on module to support Problem data types.
module org.zalando.problem.jackson {
requires com.fasterxml.jackson.annotation;
requires static org.apiguardian.api;
requires transitive com.fasterxml.jackson.core;
requires transitive com.fasterxml.jackson.databind;
requires transitive org.zalando.problem;
exports org.zalando.problem.jackson;
provides com.fasterxml.jackson.databind.Module with org.zalando.problem.jackson.ProblemModule;
}