From a5e1fc6d6bf07beac7b23487ee8ad51e4067708a Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com>
Date: Sat, 26 Aug 2017 17:28:01 -0400
Subject: [PATCH] Added execution command to maven.

---
 pom.xml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/pom.xml b/pom.xml
index 2774e521..1f03f21a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -216,6 +216,24 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>exec-maven-plugin</artifactId>
+                <version>1.6.0</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>java</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <mainClass>com.comandante.creeper.Main</mainClass>
+                    <arguments>
+                        <argument>DefaultMUD</argument>
+                    </arguments>
+                </configuration>
+            </plugin>
         </plugins>
         <resources>
             <resource>
-- 
GitLab