Skip to content

Commit

Permalink
Bump Java requirement to 17
Browse files Browse the repository at this point in the history
  • Loading branch information
sgdc3 committed Jun 29, 2024
1 parent f81a020 commit 536af46
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build_and_test:
strategy:
matrix:
jdkversion: [11, 17, 21]
jdkversion: [17, 21]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ You can also create your own translation file and, if you want, you can share it
## Requirements

##### Compiling requirements:
>- JDK 11+
>- JDK 17+
>- Maven (3.8.8+)
>- Git/GitHub (Optional)

Expand All @@ -124,7 +124,7 @@ You can also create your own translation file and, if you want, you can share it
>- Execute command "mvn clean package"

##### Running requirements:
>- Java 11+
>- Java 17+
>- Paper or Spigot (1.16.5 and up)
>- ProtocolLib (optional, required by some features)

Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@
<!-- Environment properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.source>11</java.source>
<java.target>11</java.target>
<java.apiVersion>11</java.apiVersion>
<java.compiler.minimumVersion>11</java.compiler.minimumVersion>
<java.source>17</java.source>
<java.target>17</java.target>
<java.apiVersion>17</java.apiVersion>
<java.compiler.minimumVersion>17</java.compiler.minimumVersion>
<maven.minimumVersion>3.8.8</maven.minimumVersion>

<!-- Versioning properties -->
Expand Down

0 comments on commit 536af46

Please sign in to comment.