Browse Source

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
pull/7526/head
chrislu 7 days ago
parent
commit
ec08fadf85
  1. 4
      test/java/spark/pom.xml

4
test/java/spark/pom.xml

@ -84,8 +84,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>

Loading…
Cancel
Save