Switched to JavaFX and added builtin Support

This commit is contained in:
Finn
2026-01-19 22:23:49 +01:00
parent 627e0c86e4
commit 8a20970e12
13 changed files with 1019 additions and 263 deletions

21
pom.xml
View File

@@ -6,7 +6,7 @@
<groupId>org.openautonomousconnection</groupId>
<artifactId>LuaScript</artifactId>
<version>1.0.0-BETA.1.0</version>
<version>1.0.0-BETA.1.1</version>
<organization>
<name>Open Autonomous Connection</name>
@@ -73,6 +73,10 @@
<name>projectlombok</name>
<url>https://github.com/projectlombok/lombok?tab=License-1-ov-file</url>
</license>
<license>
<name>MIT - LuaJ</name>
<url>https://github.com/luaj/luaj</url>
</license>
</licenses>
<repositories>
@@ -89,7 +93,7 @@
<dependency>
<groupId>dev.unlegitdqrk</groupId>
<artifactId>unlegitlibrary</artifactId>
<version>1.6.9</version>
<version>1.7.1</version>
</dependency>
<dependency>
<groupId>org.luaj</groupId>
@@ -103,9 +107,16 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.22.1</version>
<groupId>org.openjfx</groupId>
<artifactId>javafx</artifactId>
<version>26-ea+22</version>
<type>pom</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-web</artifactId>
<version>26-ea+22</version>
<scope>compile</scope>
</dependency>
</dependencies>