From f2bcb7231fb6b366f26f385131f430dcf3c1e209 Mon Sep 17 00:00:00 2001 From: trivernis Date: Fri, 18 Nov 2022 17:40:18 +0100 Subject: [PATCH] Change source level to java 17 --- build.gradle | 2 +- lwjgl3/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index a026828..4dc1c03 100644 --- a/build.gradle +++ b/build.gradle @@ -32,7 +32,7 @@ allprojects { configure(subprojects) { apply plugin: 'java-library' apply plugin: 'kotlin' - sourceCompatibility = 19 + sourceCompatibility = 17 compileJava { options.incremental = true } diff --git a/lwjgl3/build.gradle b/lwjgl3/build.gradle index 84109cc..ce3d652 100644 --- a/lwjgl3/build.gradle +++ b/lwjgl3/build.gradle @@ -20,7 +20,7 @@ else { sourceSets.main.resources.srcDirs += [ rootProject.file('assets').path ] mainClassName = 'com.last.commit.lwjgl3.Lwjgl3Launcher' eclipse.project.name = appName + '-lwjgl3' -sourceCompatibility = 19 +sourceCompatibility = 17 dependencies { implementation "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"