From 0120c135c498564e827de2330e47d1b667ceff85 Mon Sep 17 00:00:00 2001 From: stormboomer Date: Tue, 29 Aug 2023 20:07:22 +0200 Subject: [PATCH] Added JDK 8 version compatiblity for DynmapCoreAPI. It seems that this is missing from latest release and causes incompatiblity with older versions. This should resolve this --- DynmapCoreAPI/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/DynmapCoreAPI/build.gradle b/DynmapCoreAPI/build.gradle index 6003b05c..15771378 100644 --- a/DynmapCoreAPI/build.gradle +++ b/DynmapCoreAPI/build.gradle @@ -6,6 +6,7 @@ eclipse { name = "Dynmap(DynmapCoreAPI)" } } +sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly. description = "DynmapCoreAPI"