From dc5aefedf1fa429f7101f56fa7e9485b5d3dc2c4 Mon Sep 17 00:00:00 2001 From: shifujun Date: Mon, 18 Dec 2023 16:39:09 +0800 Subject: [PATCH] Fix bytecode compatible back to 52(JDK8) This project need JDK 11 to compile, but target to JDK 8. IDEA need uncheck "use --release" in Preferences | Build, Execution, Deployment | Compiler | Java Compiler , to build success. fix #470 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 89ffd957..e27790b7 100644 --- a/pom.xml +++ b/pom.xml @@ -151,8 +151,8 @@ maven-compiler-plugin 3.2 - 11 - 11 + 1.8 + 1.8 11 11 -parameters -- 2.39.5