Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Java 9 modularity? #384

Closed
dekar91 opened this issue Oct 13, 2020 · 2 comments
Closed

Java 9 modularity? #384

dekar91 opened this issue Oct 13, 2020 · 2 comments
Labels

Comments

@dekar91
Copy link

dekar91 commented Oct 13, 2020

Hi! Is there a way to use module-kotlin with Java 9 modularity?
I've imported it in gradle:

implementation "com.fasterxml.jackson.module:jackson-module-kotlin"

module exapmle.main {
   
    requires com.fasterxml.jackson.databind;
    requires com.fasterxml.jackson.datatype.jsr310;
    requires jackson.module.kotlin;
}

But got error: module not found: jackson.module.kotlin when try to compile it.

Thanks!

@cowtowncoder
Copy link
Member

Whereas most other Jackson modules were upgrade to use Moditect to include module-system compatible info, Kotlin module has not been, yet. It seems like a good idea to do and given Maven build, examples from other modules/components should be quite doable for 2.12.
I will create a new issue for that.

@cowtowncoder
Copy link
Member

Added #385 as follow-up.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants