-
-
Notifications
You must be signed in to change notification settings - Fork 180
Closed
Description
Attempting to use com.fasterxml.jackson.kotlin fails because "Symbol is declared in module 'com.fasterxml.jackson.kotlin' which does not export package 'com.fasterxml.jackson.module.kotlin'"
I believe module-info should have an exports line added:
module com.fasterxml.jackson.kotlin {
requires java.desktop;
requires kotlin.stdlib;
requires com.fasterxml.jackson.annotation;
requires com.fasterxml.jackson.databind;
exports com.fasterxml.jackson.module.kotlin;
provides com.fasterxml.jackson.databind.Module with com.fasterxml.jackson.module.kotlin.KotlinModule;
}