summaryrefslogtreecommitdiff
path: root/scl/pom.xml
diff options
context:
space:
mode:
authorstudent <student@69.161.224.78>2018-02-13 11:14:30 -0500
committerstudent <student@69.161.224.78>2018-02-13 11:14:30 -0500
commit63390a44ab57983472b87b8869923af02c36b45a (patch)
tree62964cfcbe7e0bb6eb74769af62985527320119a /scl/pom.xml
parent825128ba939c6ac5728fd3d9d78e84aa9e60806b (diff)
Refactor SCL into its own module
Diffstat (limited to 'scl/pom.xml')
-rw-r--r--scl/pom.xml60
1 files changed, 36 insertions, 24 deletions
diff --git a/scl/pom.xml b/scl/pom.xml
index a4e9e4c..2b26545 100644
--- a/scl/pom.xml
+++ b/scl/pom.xml
@@ -1,26 +1,38 @@
<?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>
- <groupId>bjc</groupId>
- <artifactId>dicelang-scl</artifactId>
- <version>1.0-SNAPSHOT</version>
- <name>scl</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
+ 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-scl</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <name>scl</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>
+
+
+ <dependency>
+ <groupId>bjc</groupId>
+ <artifactId>BJC-Utils2</artifactId>
+ <version>1.0.0</version>
+ </dependency>
+ <dependency>
+ <groupId>bjc</groupId>
+ <artifactId>dicelang-dice</artifactId>
+ <version>1.0.0</version>
+ </dependency>
+ </dependencies>
</project>