Skip to content

Commit

Permalink
Fix #1277: add JDK 22 optimizations back to FDP (#1285)
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder authored May 1, 2024
1 parent 437e442 commit 7d8dc09
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java_version: ['8', '11', '17', '21']
java_version: ['8', '11', '17', '21', '22']
os: ['ubuntu-20.04']
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
Expand Down
5 changes: 4 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ com.fasterxml.jackson.core.*;version=${project.version}
<artifact>ch.randelshofer:fastdoubleparser</artifact>
<excludes>
<exclude>META-INF/versions/**/module-info.*</exclude>
<exclude>META-INF/versions/22/**/*.*</exclude>
</excludes>
</filter>
</filters>
Expand Down Expand Up @@ -207,6 +206,10 @@ com.fasterxml.jackson.core.*;version=${project.version}
<pattern>META-INF/versions/21/ch/randelshofer/fastdoubleparser</pattern>
<shadedPattern>META-INF/versions/21/com/fasterxml/jackson/core/io/doubleparser</shadedPattern>
</relocation>
<relocation>
<pattern>META-INF/versions/22/ch/randelshofer/fastdoubleparser</pattern>
<shadedPattern>META-INF/versions/22/com/fasterxml/jackson/core/io/doubleparser</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
Expand Down

0 comments on commit 7d8dc09

Please sign in to comment.