We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b7adfa commit 0e360abCopy full SHA for 0e360ab
src/moditect/module-info.java
@@ -1,13 +1,15 @@
1
// Kotlin module-info for Main artifact
2
module tools.jackson.module.kotlin
3
{
4
- requires java.desktop;
+ requires java.desktop; // for @Transient
5
6
requires kotlin.reflect;
7
- requires kotlin.stdlib;
+ requires transitive kotlin.stdlib;
8
+ requires org.jetbrains.annotations;
9
10
requires com.fasterxml.jackson.annotation;
- requires tools.jackson.databind;
11
+ requires tools.jackson.core;
12
+ requires transitive tools.jackson.databind;
13
14
exports tools.jackson.module.kotlin;
15
0 commit comments