Skip to content

Commit

Permalink
Merge pull request #601 from xstefank/min-jdk-17
Browse files Browse the repository at this point in the history
Set minimum JDK to 17
  • Loading branch information
xstefank authored Jan 8, 2025
2 parents 1ca8c98 + aafd20e commit 0a5ebf4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
# To list the available releases for a given "feature version" (example for 16):
# https://api.adoptium.net/v3/assets/latest/16/hotspot
java:
- { name: "11" }
- { name: "17" }
- { name: "18" }
- { name: "19" }
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 17, 21 ]
java: [ 17, 21 ]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/review-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- uses: actions/setup-java@v4
with:
java-version: 11
java-version: 17
distribution: temurin
cache: maven

Expand Down
3 changes: 3 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
<url>http://smallrye.io</url>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>

<version.eclipse.microprofile.config>3.1</version.eclipse.microprofile.config>
<version.eclipse.microprofile.health>4.0.1</version.eclipse.microprofile.health>
<version.eclipse.parsson>1.1.7</version.eclipse.parsson>
Expand Down

0 comments on commit 0a5ebf4

Please sign in to comment.