File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 162
162
<goal >test-compile</goal >
163
163
</goals >
164
164
<configuration >
165
- <args >
166
- </args >
165
+ <sourceDirs >
166
+ <source >${project.basedir} /src/test/java</source >
167
+ <source >${project.basedir} /src/test/kotlin</source >
168
+ </sourceDirs >
167
169
</configuration >
168
170
</execution >
169
171
</executions >
179
181
-->
180
182
<include >tools.jackson.module.kotlin.**</include >
181
183
</includes >
184
+ <!-- 11-Apr-2025, tatu: Cannot make JPMS work here, no matter what.
185
+ So... turn it off
186
+ -->
187
+ <useModulePath >false</useModulePath >
182
188
</configuration >
183
189
</plugin >
184
190
<plugin >
196
202
</configuration >
197
203
</plugin >
198
204
199
- <!-- 02-Nov-2020, tatu: Add JDK9+ module info with Moditect -->
200
- <plugin >
201
- <groupId >org.moditect</groupId >
202
- <artifactId >moditect-maven-plugin</artifactId >
203
- </plugin >
204
-
205
205
<!-- 05-Jul-2020, tatu: Add generation of Gradle Module Metadata -->
206
206
<plugin >
207
207
<groupId >org.gradlex</groupId >
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ Former maintainers:
24
24
25
25
3.0.0-rc3 (not yet released)
26
26
27
+ #887: Change 3.0 to use `module-info.java` directly [JSTEP-11]
27
28
- Branch rename "master" -> "3.x" [JSTEP-12]
28
29
29
30
3.0.0-rc2 (28-Mar-2025)
Original file line number Diff line number Diff line change 1
1
// Kotlin module-info for Main artifact
2
2
module tools .jackson .module .kotlin
3
3
{
4
- requires java .desktop ;
5
-
6
4
requires kotlin .reflect ;
7
5
requires transitive kotlin .stdlib ;
6
+ requires org .jetbrains .annotations ;
8
7
9
8
requires com .fasterxml .jackson .annotation ;
10
9
requires tools .jackson .core ;
You can’t perform that action at this time.
0 commit comments