Skip to content

Commit 3e601ac

Browse files
committed
Revert last 2 commits to get build working again
1 parent eacf3d5 commit 3e601ac

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<artifactId>jackson-module-kotlin</artifactId>
1616
<name>jackson-module-kotlin</name>
1717
<version>3.0.0-SNAPSHOT</version>
18-
<packaging>jar</packaging>
18+
<packaging>bundle</packaging>
1919
<description>Add-on module for Jackson (https://github.com/FasterXML/jackson/) to support
2020
Kotlin language, specifically introspection of method/constructor parameter names,
2121
without having to add explicit property name annotation.

src/moditect/module-info.java

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

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

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

1412
exports tools.jackson.module.kotlin;
1513

0 commit comments

Comments
 (0)