Added Maven exec plugin to the server build

Now possible to use the debugger again. Instructions for use will be added in the upcoming README refactor (in short, add a maven build config that runs "compile exec:java")
This commit is contained in:
vddcore
2022-06-16 12:23:04 +00:00
committed by Ryan
parent c5d0173282
commit 5830309ded
+9
View File
@@ -230,6 +230,15 @@
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.22.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<mainClass>rs09.Server</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<repositories>