From 586db5dcd5977aa35d6a9e17f308eb82cddc8652 Mon Sep 17 00:00:00 2001 From: Slava Semushin Date: Thu, 28 Dec 2023 11:53:57 +0700 Subject: [PATCH] build: fix "Warning: bootstrap class path not set in conjunction with -source 8" on JDK 11 and 17 Part of #1350 #1158 #1556 --- pom.xml | 40 +++++++++++++++++++++++++++++++++++++--- 1 file changed, 37 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index c3d2edbe4..9e97cfdb1 100644 --- a/pom.xml +++ b/pom.xml @@ -875,8 +875,6 @@ maven-compiler-plugin ${compiler.plugin.version} - ${java.version} - ${java.version} true true false @@ -1263,11 +1261,13 @@ - org.apache.maven.plugins maven-compiler-plugin + ${java.version} + ${java.version} + true @@ -1279,6 +1279,40 @@ + + jdk11 + + 11 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 11 + + + + + + + jdk17 + + 17 + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 17 + + + + + frontend