Skip to content

Commit 7d8dc09

Browse files
authored
Fix #1277: add JDK 22 optimizations back to FDP (#1285)
1 parent 437e442 commit 7d8dc09

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
fail-fast: false
2727
matrix:
28-
java_version: ['8', '11', '17', '21']
28+
java_version: ['8', '11', '17', '21', '22']
2929
os: ['ubuntu-20.04']
3030
env:
3131
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"

pom.xml

+4-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ com.fasterxml.jackson.core.*;version=${project.version}
170170
<artifact>ch.randelshofer:fastdoubleparser</artifact>
171171
<excludes>
172172
<exclude>META-INF/versions/**/module-info.*</exclude>
173-
<exclude>META-INF/versions/22/**/*.*</exclude>
174173
</excludes>
175174
</filter>
176175
</filters>
@@ -207,6 +206,10 @@ com.fasterxml.jackson.core.*;version=${project.version}
207206
<pattern>META-INF/versions/21/ch/randelshofer/fastdoubleparser</pattern>
208207
<shadedPattern>META-INF/versions/21/com/fasterxml/jackson/core/io/doubleparser</shadedPattern>
209208
</relocation>
209+
<relocation>
210+
<pattern>META-INF/versions/22/ch/randelshofer/fastdoubleparser</pattern>
211+
<shadedPattern>META-INF/versions/22/com/fasterxml/jackson/core/io/doubleparser</shadedPattern>
212+
</relocation>
210213
</relocations>
211214
</configuration>
212215
</execution>

0 commit comments

Comments
 (0)