Skip to content
Snippets Groups Projects
Commit e14cf418 authored by Christopher Bohn's avatar Christopher Bohn :thinking:
Browse files

Updated pom.xml to facilitate debugging while using a Maven javafx goal

See this video: https://use.vg/z8q1YR
parent d6a2a787
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,23 @@
<configuration>
<mainClass>edu.unl.cse.csce361.gui_starter.Main</mainClass>
</configuration>
<executions>
<execution>
<id>run</id>
<configuration>
<mainClass>edu.unl.cse.csce361.gui_starter.Main</mainClass>
</configuration>
</execution>
<execution>
<id>debug</id>
<configuration>
<mainClass>edu.unl.cse.csce361.gui_starter.Main</mainClass>
<options>
<option>-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:8000</option>
</options>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment