summaryrefslogtreecommitdiff
path: root/base/pom.xml
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2017-10-25 12:47:25 -0300
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2017-10-25 12:47:25 -0300
commit5b827a1bdba27f763c035553f7bdb8da4f9cf71a (patch)
treeaa8a6c502a6fdaf688cbc0fa33bc5dd1f520ae2d /base/pom.xml
parent6b76d2ff5a3df3931c0983d915eed33e83e892e0 (diff)
Update poms to do things and stuff
Diffstat (limited to 'base/pom.xml')
-rw-r--r--base/pom.xml32
1 files changed, 21 insertions, 11 deletions
diff --git a/base/pom.xml b/base/pom.xml
index 5f5b6be..e8c0288 100644
--- a/base/pom.xml
+++ b/base/pom.xml
@@ -7,7 +7,7 @@
<version>1.0.0</version>
</parent>
- <artifactId>dice-lang</artifactId>
+ <artifactId>dicelang-base</artifactId>
<packaging>jar</packaging>
<properties>
@@ -24,20 +24,30 @@
<artifactId>exec-maven-plugin</artifactId>
<version>1.5.0</version>
- <configuration>
- <executable>java</executable>
+ <executions>
+ <execution>
+ <!-- Run the program -->
+ <id>dicelang-console</id>
+
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <configuration>
+ <executable>java</executable>
- <arguments>
- <argument>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n</argument>
- <argument>-classpath</argument>
+ <arguments>
+ <argument>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n</argument>
+ <argument>-classpath</argument>
- <classpath/>
+ <classpath/>
- <argument>${main.class}</argument>
- </arguments>
+ <argument>${main.class}</argument>
+ </arguments>
- <mainClass>${main.class}</mainClass>
- </configuration>
+ <mainClass>${main.class}</mainClass>
+ </configuration>
+ </execution>
+ </executions>
</plugin>
<plugin>