File tree Expand file tree Collapse file tree 4 files changed +6
-13
lines changed Expand file tree Collapse file tree 4 files changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,6 @@ https://stackoverflow.com/questions/16302247/maven-property-project-artifact-sel
62
62
<dependency >
63
63
<groupId >org.junit.jupiter</groupId >
64
64
<artifactId >junit-jupiter</artifactId >
65
- <version >${version.junit5} </version >
66
65
<scope >test</scope >
67
66
</dependency >
68
67
</dependencies >
@@ -99,11 +98,6 @@ https://stackoverflow.com/questions/16302247/maven-property-project-artifact-sel
99
98
100
99
<build >
101
100
<plugins >
102
- <plugin >
103
- <groupId >org.moditect</groupId >
104
- <artifactId >moditect-maven-plugin</artifactId >
105
- </plugin >
106
-
107
101
<!-- 08-Nov-2019, tatu: Copied from
108
102
https://github.com/stephenc/git-timestamp-maven-plugin/blob/master/pom.xml#L327-L337
109
103
-->
Original file line number Diff line number Diff line change @@ -12,4 +12,5 @@ mostly)
12
12
3.0 (not yet released)
13
13
14
14
#272: Require JDK17 for jackson-annotations 3.0 for proper `module-info.java`
15
+ #274: Change 3.0 to use `module-info.java` directly for build (instead of via Moditect)
15
16
- Change `JsonInclude.value`, `JsonInclude.content` to `USE_DEFAULTS` (from `ALWAYS`)
Original file line number Diff line number Diff line change
1
+ // Jackson 3.x module-info for jackson-annotations Main artifact
2
+ module com .fasterxml .jackson .annotation {
3
+ // Might not be required beyond exports but just in case:
4
+ opens com .fasterxml .jackson .annotation ;
5
+ }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments