This commit is contained in:
potzplitz 2024-03-05 11:35:13 +01:00
parent 684ad6cf9e
commit e8cc239c2d
3 changed files with 8 additions and 1 deletions

View file

@ -25,6 +25,11 @@
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>3.4</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>

View file

@ -11,7 +11,8 @@ import gui.LoadMenu;
public class Main {
public static void main(String[] args) throws IOException, UnsupportedLookAndFeelException {
public static void main(String[] args) throws IOException, UnsupportedLookAndFeelException {
LoadMenu load = new LoadMenu();
load.onLoad();

View file

@ -9,4 +9,5 @@
requires org.json;
requires org.apache.commons.io;
requires java.datatransfer;
requires com.formdev.flatlaf;
}