summaryrefslogtreecommitdiff
path: root/dice-lang/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'dice-lang/pom.xml')
-rw-r--r--dice-lang/pom.xml20
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>