From ec08fadf85f709e411c5ead56c3e0bf6fb86f9d8 Mon Sep 17 00:00:00 2001 From: chrislu Date: Sat, 22 Nov 2025 13:39:22 -0800 Subject: [PATCH] fix: align maven-compiler-plugin with compiler properties - Change compiler plugin source/target from hardcoded 1.8 to use properties - Ensures consistency with maven.compiler.source/target set to 11 - Prevents version mismatch between properties and plugin configuration - Aligns with surefire Java 9+ module arguments --- test/java/spark/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/java/spark/pom.xml b/test/java/spark/pom.xml index 935ae85b4..dffdb47ba 100644 --- a/test/java/spark/pom.xml +++ b/test/java/spark/pom.xml @@ -84,8 +84,8 @@ maven-compiler-plugin 3.11.0 - 1.8 - 1.8 + ${maven.compiler.source} + ${maven.compiler.target}