Update JavaFx version

This commit is contained in:
Jafea7 2025-04-01 18:36:25 +11:00
parent 43b5742d1c
commit a144940c84
2 changed files with 17 additions and 2 deletions

View File

@ -117,7 +117,7 @@
<downloadUrl>https://jdk.java.net/</downloadUrl>
<jre>
<path>jre</path>
<bundledJre64Bit>true</bundledJre64Bit>
<requires64Bit>true</requires64Bit>
<minVersion>15</minVersion>
<maxHeapSize>1024</maxHeapSize>
<opts>

View File

@ -2,6 +2,11 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<organization>
<name>Disorganized</name>
</organization>
<inceptionYear>2018</inceptionYear>
<description>CTBRec is a program to capture streams from adult chatroom sites.</description>
<modelVersion>4.0.0</modelVersion>
<groupId>ctbrec</groupId>
<artifactId>master</artifactId>
@ -18,7 +23,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<version.javafx>21.0.1</version.javafx>
<version.javafx>21.0.6</version.javafx>
<version.junit>5.7.2</version.junit>
<jackson.version>2.15.1</jackson.version>
<org.mapstruct.version>1.5.3.Final</org.mapstruct.version>
@ -28,6 +33,16 @@
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version> <!-- Use the version that suits your project -->
<configuration>
<compilerArgs>
<arg>-Xlint:deprecation</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>