diff options
| author | bculkin2442 <bjculkin@mix.wvu.edu> | 2017-02-26 08:22:59 -0500 |
|---|---|---|
| committer | bculkin2442 <bjculkin@mix.wvu.edu> | 2017-02-27 03:55:15 -0500 |
| commit | b776b8a558a2e27e4551768050f7e34e233326b5 (patch) | |
| tree | 6f574992a406d65ec3fac24a3b0bc498e9d9243a /dice-lang/pom.xml | |
| parent | 07d8b9547a654021d8c56021779f4cdaa5f03f1b (diff) | |
Dice math
Diffstat (limited to 'dice-lang/pom.xml')
| -rw-r--r-- | dice-lang/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/dice-lang/pom.xml b/dice-lang/pom.xml index a3a3f6f..86855bf 100644 --- a/dice-lang/pom.xml +++ b/dice-lang/pom.xml @@ -19,16 +19,36 @@ <artifactId>exec-maven-plugin</artifactId> <version>1.5.0</version> <configuration> + <executable>java</executable> + <arguments> + <argument>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n</argument> + + <argument>-classpath</argument> + <classpath/> + <argument>bjc.dicelang.v2.DiceLangConsole</argument> + </arguments> <mainClass>bjc.dicelang.v2.DiceLangConsole</mainClass> </configuration> </plugin> </plugins> </build> + <repositories> + <repository> + <id>jline</id> + <name>JLine Project Repository</name> + <url>http://jline.sourceforge.net/m2repo</url> + </repository> + </repositories> <dependencies> <dependency> <groupId>bjc</groupId> <artifactId>BJC-Utils2</artifactId> <version>0.1.0-SNAPSHOT</version> </dependency> + <dependency> + <groupId>jline</groupId> + <artifactId>jline</artifactId> + <version>0.9.9</version> + </dependency> </dependencies> </project> |
