summaryrefslogtreecommitdiff
path: root/dice/pom.xml
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2017-10-25 12:22:56 -0300
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2017-10-25 12:22:56 -0300
commitcb9b235a59a2e136f3b850966a8820dee2f90969 (patch)
tree8da1ee90f36ddc3f9e7ac7443b0ca087ab2bf2c2 /dice/pom.xml
parent7bda9de511a5642efb297eae98c6ea7c42b27754 (diff)
Start splitting dice to a new module
Diffstat (limited to 'dice/pom.xml')
-rw-r--r--dice/pom.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/dice/pom.xml b/dice/pom.xml
new file mode 100644
index 0000000..9371b96
--- /dev/null
+++ b/dice/pom.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>bjc</groupId>
+ <artifactId>dicelang-Parent</artifactId>
+ <version>1.0.0</version>
+ </parent>
+
+ <artifactId>dicelang-dice</artifactId>
+ <packaging>jar</packaging>
+
+ <name>dicelang-dice</name>
+ <url>http://maven.apache.org</url>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>