Skip to content

Commit c7c4a75

Browse files
committed
...
1 parent 573a972 commit c7c4a75

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
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>bundle</packaging>
18+
<packaging>jar</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.
@@ -155,8 +155,8 @@
155155
<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
156156
<plugins>
157157
<plugin>
158-
<artifactId>kotlin-maven-plugin</artifactId>
159158
<groupId>org.jetbrains.kotlin</groupId>
159+
<artifactId>kotlin-maven-plugin</artifactId>
160160
<version>${version.kotlin}</version>
161161

162162
<executions>

src/test/kotlin/module-info.java renamed to src/test/java/module-info.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,45 @@
2222

2323
// Further, need to open up test packages for JUnit et al
2424

25+
exports tools.jackson.module.kotlin;
2526
opens tools.jackson.module.kotlin;
27+
exports tools.jackson.module.kotlin.kogeraIntegration;
2628
opens tools.jackson.module.kotlin.kogeraIntegration;
29+
exports tools.jackson.module.kotlin.kogeraIntegration.deser;
2730
opens tools.jackson.module.kotlin.kogeraIntegration.deser;
31+
exports tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass;
2832
opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass;
33+
34+
exports tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.deserializer;
2935
opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.deserializer;
36+
37+
exports tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.deserializer.byAnnotation;
3038
opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.deserializer.byAnnotation;
39+
40+
exports tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.deserializer.byAnnotation.specifiedForProperty;
3141
opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.deserializer.byAnnotation.specifiedForProperty;
42+
43+
exports tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.jsonCreator;
3244
opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.jsonCreator;
45+
46+
exports tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.parameterSize.nonNullObject;
3347
opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.parameterSize.nonNullObject;
48+
49+
exports tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.parameterSize.nullableObject;
3450
opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.parameterSize.nullableObject;
51+
52+
exports tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.parameterSize.primitive;
3553
opens tools.jackson.module.kotlin.kogeraIntegration.deser.valueClass.parameterSize.primitive;
54+
55+
exports tools.jackson.module.kotlin.test;
3656
opens tools.jackson.module.kotlin.test;
57+
58+
exports tools.jackson.module.kotlin.test.github;
3759
opens tools.jackson.module.kotlin.test.github;
60+
61+
exports tools.jackson.module.kotlin.test.github.failing;
3862
opens tools.jackson.module.kotlin.test.github.failing;
63+
64+
exports tools.jackson.module.kotlin.test.github.parameterSize;
3965
opens tools.jackson.module.kotlin.test.github.parameterSize;
4066
}

0 commit comments

Comments
 (0)