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

View file

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

View file

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