Skip to content

Commit

Permalink
Reverted back to releasing on Java 11 (added it to CI tests too)
Browse files Browse the repository at this point in the history
  • Loading branch information
FroMage committed Jun 10, 2024
1 parent efc241b commit 104a513
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
strategy:
matrix:
java: [
{ 'version': '11', 'opts': '' },
{ 'version': '17', 'opts': '' },
{ 'version': '21', 'opts': '' },
{ 'version': '22', 'opts': '' }
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@
<configuration>
<rules>
<requireJavaVersion>
<version>17</version>
<message>This project must be built with Java 12 or later.</message>
<version>11</version>
<message>This project must be built with Java 11 or later.</message>
</requireJavaVersion>
</rules>
</configuration>
Expand All @@ -173,7 +173,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<release>17</release>
<release>11</release>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 104a513

Please sign in to comment.