summaryrefslogtreecommitdiff
path: root/dice-lang/pom.xml
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2017-10-25 12:10:14 -0300
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2017-10-25 12:10:14 -0300
commit7bda9de511a5642efb297eae98c6ea7c42b27754 (patch)
treedff1aa772b9ac088c5bd07b8d10d944cbff89f96 /dice-lang/pom.xml
parentf028ea6dc555fc5192a96b00b8e96e90dbf6de55 (diff)
Start switch to maven modules
Diffstat (limited to 'dice-lang/pom.xml')
-rw-r--r--dice-lang/pom.xml89
1 files changed, 0 insertions, 89 deletions
diff --git a/dice-lang/pom.xml b/dice-lang/pom.xml
deleted file mode 100644
index e1572ba..0000000
--- a/dice-lang/pom.xml
+++ /dev/null
@@ -1,89 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>bjc</groupId>
- <artifactId>dice-lang</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <properties>
- <main.class1>bjc.dicelang.scl.StreamControlConsole</main.class1>
- <main.class>bjc.dicelang.DiceLangConsole</main.class>
- </properties>
- <build>
- <sourceDirectory>src</sourceDirectory>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.3</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <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>${main.class}</argument>
- </arguments>
- <mainClass>${main.class}</mainClass>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>3.0.0</version>
- <configuration>
- <descriptorRefs>
- <descriptorRef>jar-with-dependencies</descriptorRef>
- </descriptorRefs>
- <archive>
- <manifest>
- <mainClass>${main.class}</mainClass>
- </manifest>
- </archive>
- </configuration>
- <executions>
- <execution>
- <id>make-assembly</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>data/</directory>
- <includes>
- <include>**/*.txt</include>
- <include>**/*.help</include>
- </includes>
- </resource>
- </resources>
- </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>