From 3e601ac66952c0b6ecf8f5bd4f752089d48a4082 Mon Sep 17 00:00:00 2001 From: Tatu Saloranta Date: Mon, 3 Feb 2025 17:58:21 -0800 Subject: [PATCH] Revert last 2 commits to get build working again --- pom.xml | 2 +- src/moditect/module-info.java | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) 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;