Java 18137 Upgraded javafx module to jdk9-and-above profile

* [JAVA-18137] Upgraded javafx module to jdk9-and-above profile

* [JAVA-18137] Upgraded javafx module to jdk9-and-above profile

* [JAVA-18137] Clean up properties

* [JAVA-18137] Fixed a typo
This commit is contained in:
panos-kakos
2023-03-08 10:36:21 +02:00
committed by GitHub
parent af8f603916
commit 8af53187dc
2 changed files with 40 additions and 5 deletions

View File

@@ -12,4 +12,35 @@
<version>1.0.0-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>${javafx.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>${javafx-maven-plugin.version}</version>
<configuration>
<mainClass>Main</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<javafx.version>19</javafx.version>
<javafx-maven-plugin.version>0.0.8</javafx-maven-plugin.version>
</properties>
</project>