Skip to content

Commit 0e360ab

Browse files
committed
Minor tweaks to module-info.java
1 parent 3b7adfa commit 0e360ab

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/moditect/module-info.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
// Kotlin module-info for Main artifact
22
module tools.jackson.module.kotlin
33
{
4-
requires java.desktop;
4+
requires java.desktop; // for @Transient
55

66
requires kotlin.reflect;
7-
requires kotlin.stdlib;
7+
requires transitive kotlin.stdlib;
8+
requires org.jetbrains.annotations;
89

910
requires com.fasterxml.jackson.annotation;
10-
requires tools.jackson.databind;
11+
requires tools.jackson.core;
12+
requires transitive tools.jackson.databind;
1113

1214
exports tools.jackson.module.kotlin;
1315

0 commit comments

Comments
 (0)