diff --git a/pom.xml b/pom.xml
index 5b7090ab..c030df56 100644
--- a/pom.xml
+++ b/pom.xml
@@ -15,7 +15,7 @@
jackson-module-kotlin
jackson-module-kotlin
3.0.0-SNAPSHOT
- jar
+ bundle
Add-on module for Jackson (https://github.com/FasterXML/jackson/) to support
Kotlin language, specifically introspection of method/constructor parameter names,
without having to add explicit property name annotation.
diff --git a/src/moditect/module-info.java b/src/moditect/module-info.java
index 4d8fe7e0..59027235 100644
--- a/src/moditect/module-info.java
+++ b/src/moditect/module-info.java
@@ -1,15 +1,13 @@
// Kotlin module-info for Main artifact
module tools.jackson.module.kotlin
{
- requires java.desktop; // for @Transient
+ requires java.desktop;
requires kotlin.reflect;
- requires transitive kotlin.stdlib;
- requires org.jetbrains.annotations;
+ requires kotlin.stdlib;
requires com.fasterxml.jackson.annotation;
- requires tools.jackson.core;
- requires transitive tools.jackson.databind;
+ requires tools.jackson.databind;
exports tools.jackson.module.kotlin;