Skip to content

Commit

Permalink
build(jdk): upgrade minimum JDK to 17 (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores authored Apr 30, 2024
1 parent c464bbd commit fc089a3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven-central-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Java setup
uses: actions/setup-java@v3
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Run a build of the code base before release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'
- run: mvn -B -U clean verify
publish-snapshot:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ JFR with JDK Mission Control API
## Requirements
Build:
- Maven
- JDK11+
- JDK17+

## Build

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
<java.version>17</java.version>
<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.source>${java.version}</maven.compiler.source>
<org.openjdk.jmc.version>9.0.0</org.openjdk.jmc.version>
Expand Down

0 comments on commit fc089a3

Please sign in to comment.