Lower Java version to 17

This commit is contained in:
Oli 2023-03-28 16:24:24 +01:00
parent 0cccefdb9c
commit 258e740ae4

10
pom.xml
View File

@ -6,8 +6,8 @@
<version>1.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>19</maven.compiler.source>
<maven.compiler.target>19</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<javafx.version>21-ea+5</javafx.version>
</properties>
@ -124,9 +124,9 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>19</source>
<target>19</target>
<release>19</release>
<source>17</source>
<target>17</target>
<release>17</release>
</configuration>
</plugin>
<plugin>