Skip to content

Commit

Permalink
Drop the requirement for Java SE 21. The minimum level should remain …
Browse files Browse the repository at this point in the history
…at Java SE 17. The TCK itself should also require Java SE 17 as a minimum.

Signed-off-by: James R. Perkins <jperkins@redhat.com>
  • Loading branch information
jamezp committed Dec 19, 2023
1 parent c019af1 commit 1925da9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '21-ea' ]
java: [ '21' ]

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion jaxrs-tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
</parent>

<properties>
<maven.compiler.release>21</maven.compiler.release>
<!-- Explicitly set the release level to Java SE 17 -->
<maven.compiler.release>17</maven.compiler.release>
<junit.jupiter.version>[5.7.2, 5.8-A00)</junit.jupiter.version>
<tck.artifactId>jakarta-restful-ws-tck</tck.artifactId>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@

<properties>
<!-- Used in the enforcer plugin to require the minimum Java version -->
<jdk.min.version>21</jdk.min.version>
<jdk.min.version>17</jdk.min.version>
<!-- used in the compiler plugin for the release level -->
<maven.compiler.release>17</maven.compiler.release>

Expand Down

0 comments on commit 1925da9

Please sign in to comment.