mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Valery Kharseko
27.49.2024 a53f221a1f8c9d7858f5ad748865b8eb8a6118e7
Add JDK 22 support (#377)

2 files modified
10 ■■■■■ changed files
.github/workflows/build.yml 2 ●●● patch | view | raw | blame | history
pom.xml 8 ●●●●● patch | view | raw | blame | history
.github/workflows/build.yml
@@ -10,7 +10,7 @@
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        java: [ '8','11','17','21']
        java: [ '8','11','17','21','22']
        os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
      fail-fast: false
    steps:
pom.xml
@@ -13,6 +13,7 @@
  information: "Portions Copyright [year] [name of copyright owner]".
  Copyright 2011-2016 ForgeRock AS.
  Portions  Copyright 2017-2024 3A Systems, LLC.
-->
<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">
    <modelVersion>4.0.0</modelVersion>
@@ -356,7 +357,7 @@
                    <inherited>true</inherited>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>3.11.0</version>
                    <version>3.13.0</version>
                    <configuration>
                        <fork>true</fork>
                        <compilerArgs>
@@ -425,11 +426,8 @@
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-javadoc-plugin</artifactId>
                    <version>3.1.1</version>
                    <version>3.8.0</version>
                    <configuration>
                        <links>
                            <link>http://commons.forgerock.org/i18n-framework/i18n-core/apidocs</link>
                        </links>
                    </configuration>
                </plugin>