Skip to content

Commit

Permalink
Fix java version
Browse files Browse the repository at this point in the history
  • Loading branch information
Mgazul committed Oct 18, 2024
1 parent 2649752 commit 95a4972
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- uses: actions/checkout@v4
- name: Set up JDK 21
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,10 @@ allprojects {

java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
languageVersion = JavaLanguageVersion.of(17)
}
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

tasks.withType(JavaCompile).configureEach {
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/com/mohistmc/banner/BannerLauncher.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

public class BannerLauncher {

private static final int MIN_CLASS_VERSION = 65;
private static final int MIN_JAVA_VERSION = 21;
private static final int MIN_CLASS_VERSION = 61;
private static final int MIN_JAVA_VERSION = 17;

private static final int MAX_CLASS_VERSION = 66;
private static final int MAX_JAVA_VERSION = 22;
private static final int MAX_CLASS_VERSION = 67;
private static final int MAX_JAVA_VERSION = 23;

public static void main(String[] args) throws Throwable {
int javaVersion = (int) Float.parseFloat(System.getProperty("java.class.version"));
Expand Down

0 comments on commit 95a4972

Please sign in to comment.