Skip to content

Commit

Permalink
Minor tweaks to module-info.java
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Feb 4, 2025
1 parent 3b7adfa commit 0e360ab
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/moditect/module-info.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
// Kotlin module-info for Main artifact
module tools.jackson.module.kotlin
{
requires java.desktop;
requires java.desktop; // for @Transient

requires kotlin.reflect;
requires kotlin.stdlib;
requires transitive kotlin.stdlib;
requires org.jetbrains.annotations;

requires com.fasterxml.jackson.annotation;
requires tools.jackson.databind;
requires tools.jackson.core;
requires transitive tools.jackson.databind;

exports tools.jackson.module.kotlin;

Expand Down

0 comments on commit 0e360ab

Please sign in to comment.