chore(build): set mainClass in main pom.xml

Doesn't do anything useful because Java (see readme).
This commit is contained in:
Paul ALNET 2024-03-25 08:43:51 +01:00
parent 1677a89a05
commit 5ad3e28f0e

View file

@ -26,6 +26,13 @@
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<!-- here we specify that we want to use the main method within the App class -->
<mainClass>org.insa.graphs.gui.MainWindow</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>