Skip to content

Commit

Permalink
Fix #267: Java 8 baseline for jackson-annotations/3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Dec 2, 2024
1 parent 8ef8146 commit af64967
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@
</scm>

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

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

<!-- 11-Jun-2020, tatu: Mismatch between jackson-bom, annotations versions
Expand Down Expand Up @@ -104,7 +110,7 @@ https://stackoverflow.com/questions/16302247/maven-property-project-artifact-sel
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.6</version>
<version>1.6.14</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype-nexus-staging</serverId>
Expand Down
1 change: 1 addition & 0 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ mostly)

3.0 (not yet released)

#267: Raise minimum Java version for `jackson-annotations` to Java 8 for Jackson 3.x
- Change `JsonInclude.value`, `JsonInclude.content` to `USE_DEFAULTS` (from `ALWAYS`)

0 comments on commit af64967

Please sign in to comment.