Skip to content

Commit

Permalink
Add JDK 23 build support (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
vharseko authored Oct 7, 2024
1 parent 3233f3e commit 1ff583a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
java: [ '8', '11', '17', '21', '22' ]
java: [ '8', '11', '17', '21', '23' ]
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
fail-fast: false
steps:
Expand Down Expand Up @@ -180,4 +180,4 @@ jobs:
shell: bash
run: |
docker run --rm -it -d --memory="1g" --name=test localhost:5000/${GITHUB_REPOSITORY,,}:${{ env.release_version }}-alpine
timeout 3m bash -c 'until docker inspect --format="{{json .State.Health.Status}}" test | grep -q \"healthy\"; do sleep 10; done'
timeout 3m bash -c 'until docker inspect --format="{{json .State.Health.Status}}" test | grep -q \"healthy\"; do sleep 10; done'
8 changes: 3 additions & 5 deletions OpenICF-java-framework/bundles-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
with the fields enclosed by brackets [] replaced by
your own identifying information:
"Portions Copyrighted [year] [name of copyright owner]"
Portions Copyrighted 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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -180,8 +181,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<links>
<link>http://download.oracle.com/javase/8/docs/api/</link>
<link>http://docs.groovy-lang.org/latest/html/api/</link>
<link>https://docs.groovy-lang.org/latest/html/api/</link>
<!-- <link>http://openicf.forgerock.org/apidocs/</link>-->
</links>
</configuration>
Expand Down Expand Up @@ -328,9 +328,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<links>
<link>http://download.oracle.com/javase/8/docs/api/</link>
<link>http://docs.groovy-lang.org/latest/html/api/</link>
<link>http://openicf.forgerock.org/apidocs/</link>
<link>https://docs.groovy-lang.org/latest/html/api/</link>
</links>
</configuration>
</plugin>
Expand Down
8 changes: 4 additions & 4 deletions OpenICF-java-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
with the fields enclosed by brackets [] replaced by
your own identifying information:
"Portions Copyrighted [year] [name of copyright owner]"
Portions Copyrighted 2018-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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -155,14 +156,13 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<version>3.10.1</version>
<configuration>
<docfilessubdirs>true</docfilessubdirs>
<source>${maven.compiler.source}</source>
<show>public</show>
<links>
<link>http://docs.oracle.com/javase/6/docs/api/</link>
<link>http://docs.groovy-lang.org/latest/html/api/</link>
<link>https://docs.groovy-lang.org/latest/html/api/</link>
</links>
</configuration>
<executions>
Expand Down Expand Up @@ -306,7 +306,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<version>3.10.1</version>
<reportSets>
<reportSet>
<id>html</id>
Expand Down

0 comments on commit 1ff583a

Please sign in to comment.