This commit is contained in:
potzplitz 2024-03-03 18:53:02 +01:00
parent 8717e07604
commit 6d0c7b5da7
3 changed files with 9 additions and 4 deletions

View file

@ -2,6 +2,7 @@
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
<attributes>
<attribute name="module" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
@ -12,16 +13,16 @@
</classpathentry>
<classpathentry including="**/*.java" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="test" value="true"/>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry including="**/*.java" kind="src" output="target/classes" path="src">

View file

@ -28,6 +28,7 @@
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
</dependencies>
<build>

View file

@ -2,7 +2,8 @@ package main;
import java.io.IOException;
import data.DownloadLevels;
import javax.swing.UnsupportedLookAndFeelException;
import data.FetchData;
import data.ManageFiles;
import filestructure.CreateFileStructure;
@ -10,7 +11,9 @@ import gui.LoadMenu;
public class Main {
public static void main(String[] args) throws IOException {
public static void main(String[] args) throws IOException, UnsupportedLookAndFeelException {
LoadMenu load = new LoadMenu();
load.onLoad();