Skip to content

Commit

Permalink
Fix #272: bump minimum JDK to 17
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jan 11, 2025
1 parent 3b9c619 commit 6fdac59
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
</scm>

<properties>
<!-- 01-Dec-2024, tatu: [annotations#267] Retain Java 8 baseline
for annotations (up from Jackson 2.x Java 1.6 baselin)
<!-- 11-Jan-2025, tatu: [annotations#272] JDK 17 for Jackson 3.x
(up from Jackson 2.x Java 1.6 baseline for annotations)
-->
<javac.src.version>1.8</javac.src.version>
<javac.target.version>1.8</javac.target.version>
<javac.src.version>17</javac.src.version>
<javac.target.version>17</javac.target.version>

<osgi.export>com.fasterxml.jackson.annotation.*;version=${project.version}</osgi.export>

Expand Down
2 changes: 1 addition & 1 deletion release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ mostly)

3.0 (not yet released)

#267: Raise minimum Java version for `jackson-annotations` to Java 8 for Jackson 3.x
#272: Require JDK17 for jackson-annotations 3.0 for proper `module-info.java`
- Change `JsonInclude.value`, `JsonInclude.content` to `USE_DEFAULTS` (from `ALWAYS`)

0 comments on commit 6fdac59

Please sign in to comment.