Skip to content

Commit a53f221

Browse files
authored
Add JDK 22 support (#377)
1 parent 4656e5b commit a53f221

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
java: [ '8','11','17','21']
13+
java: [ '8','11','17','21','22']
1414
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
1515
fail-fast: false
1616
steps:

pom.xml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
information: "Portions Copyright [year] [name of copyright owner]".
1414
1515
Copyright 2011-2016 ForgeRock AS.
16+
Portions Copyright 2017-2024 3A Systems, LLC.
1617
-->
1718
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1819
<modelVersion>4.0.0</modelVersion>
@@ -356,7 +357,7 @@
356357
<inherited>true</inherited>
357358
<groupId>org.apache.maven.plugins</groupId>
358359
<artifactId>maven-compiler-plugin</artifactId>
359-
<version>3.11.0</version>
360+
<version>3.13.0</version>
360361
<configuration>
361362
<fork>true</fork>
362363
<compilerArgs>
@@ -425,11 +426,8 @@
425426
<plugin>
426427
<groupId>org.apache.maven.plugins</groupId>
427428
<artifactId>maven-javadoc-plugin</artifactId>
428-
<version>3.1.1</version>
429+
<version>3.8.0</version>
429430
<configuration>
430-
<links>
431-
<link>http://commons.forgerock.org/i18n-framework/i18n-core/apidocs</link>
432-
</links>
433431
</configuration>
434432
</plugin>
435433

0 commit comments

Comments
 (0)