Skip to content

Commit

Permalink
ADD JDK 22 support (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
vharseko authored Aug 27, 2024
1 parent 9089371 commit dd25a20
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
java: [ '8', '11', '17', '21' ]
java: [ '8', '11', '17', '21', '22' ]
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion commons/http-framework/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
Copyright 2010–2011 ApexIdentity Inc.
Portions 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>
Expand Down Expand Up @@ -75,7 +76,7 @@
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-jsr223</artifactId>
<artifactId>groovy-all</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions commons/launcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
~ with the fields enclosed by brackets [] replaced by
~ your own identifying information:
~ "Portions Copyrighted [year] [name of copyright owner]"
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>
Expand All @@ -37,8 +39,6 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>

<!-- Documentation and site properties -->
<docTargetVersion>1.0.0</docTargetVersion>
Expand Down
6 changes: 1 addition & 5 deletions i18n-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
! CDDL HEADER END
!
! Copyright 2011 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>
Expand Down Expand Up @@ -65,10 +65,6 @@
</plugin>
</plugins>
</reporting>
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
<dependencies>
<dependency>
<groupId>org.easytesting</groupId>
Expand Down
12 changes: 8 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
with the fields enclosed by brackets [] replaced by
your own identifying information:
"Portions Copyrighted [year] [name of copyright owner]"
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">
Expand Down Expand Up @@ -100,7 +102,8 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<!-- maven-compiler-plugin http://maven.apache.org/plugins/maven-compiler-plugin -->
<mavenCompilerPluginVersion>3.11.0</mavenCompilerPluginVersion>
<mavenCompilerPluginVersion>3.13.0</mavenCompilerPluginVersion>
<maven.compiler.release>8</maven.compiler.release>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>

Expand Down Expand Up @@ -839,8 +842,8 @@
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-jsr223</artifactId>
<version>3.0.19</version>
<artifactId>groovy-all</artifactId>
<version>2.4.21</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down Expand Up @@ -931,6 +934,7 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>${mavenCompilerPluginVersion}</version>
<configuration>
<release>${maven.compiler.release}</release>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<encoding>${project.build.sourceEncoding}</encoding>
Expand Down Expand Up @@ -1004,7 +1008,7 @@
<!-- </dependency> -->
<!-- </dependencies> -->
<configuration>
<source>8</source>
<source>1.8</source>
<author>false</author>
<quiet>true</quiet>
<windowtitle>${javadocWindowTitle}</windowtitle>
Expand Down

0 comments on commit dd25a20

Please sign in to comment.