Skip to content

Commit

Permalink
Merge pull request #794 from spyrkob/ISSUE-792_require_JDK17
Browse files Browse the repository at this point in the history
[#792] Require JDK17
  • Loading branch information
spyrkob authored Nov 11, 2024
2 parents c107461 + b378011 commit 6d0ebff
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 50 deletions.
43 changes: 0 additions & 43 deletions .github/workflows/future.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest ]
jdk: [ 11, 17, 21 ]
jdk: [ 17, 21 ]
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: 11
java-version: 17
distribution: 'adopt'
cache: maven
- name: Build and test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17
- name: maven release ${{steps.metadata.outputs.current-version}}
run: |
java -version
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -518,10 +518,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
<testSource>11</testSource>
<testTarget>11</testTarget>
<source>17</source>
<target>17</target>
<testSource>17</testSource>
<testTarget>17</testTarget>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 6d0ebff

Please sign in to comment.