Skip to content

Commit e148a6f

Browse files
LarsEckartJayBazuziisidorelexler
committed
. e Fix Java version configuration in root pom.xml
Align maven.compiler.source and maven.compiler.target properties with java.version (1.8) to ensure consistent Java 8 compatibility for the main library. Co-authored-by: Jay Bazuzi <[email protected]> Co-authored-by: Llewellyn Falco <[email protected]> Co-authored-by: Lada Kesseler <[email protected]>
1 parent f7bb1be commit e148a6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
<java.version>1.8</java.version>
5858
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5959
<skipFormatCode>false</skipFormatCode>
60-
<maven.compiler.source>21</maven.compiler.source>
61-
<maven.compiler.target>21</maven.compiler.target>
60+
<maven.compiler.source>1.8</maven.compiler.source>
61+
<maven.compiler.target>1.8</maven.compiler.target>
6262

6363
</properties>
6464

0 commit comments

Comments
 (0)