File tree 2 files changed +20
-0
lines changed
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 175
175
<optimize >true</optimize >
176
176
</configuration >
177
177
</plugin >
178
+
179
+ <!-- 02-Nov-2020, tatu: Add JDK9+ module info with Moditect -->
180
+ <plugin >
181
+ <groupId >org.moditect</groupId >
182
+ <artifactId >moditect-maven-plugin</artifactId >
183
+ </plugin >
184
+
178
185
<!-- 05-Jul-2020, tatu: Add generation of Gradle Module Metadata -->
179
186
<plugin >
180
187
<groupId >de.jjohannes</groupId >
Original file line number Diff line number Diff line change
1
+ // Manually created 02-Nov-2020 for
2
+ // https://github.com/FasterXML/jackson-module-kotlin/issues/385
3
+ module com .fasterxml .jackson .kotlin {
4
+ requires java .base ;
5
+ requires java .desktop ;
6
+ requires kotlin .stdlib ;
7
+
8
+ requires com .fasterxml .jackson .annotations ;
9
+ requires com .fasterxml .jackson .databind ;
10
+
11
+ provides com .fasterxml .jackson .databind .Module with
12
+ com .fasterxml .jackson .module .kotlin .KotlinModule ;
13
+ }
You can’t perform that action at this time.
0 commit comments