diff options
| author | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2018-05-28 13:42:11 -0300 |
|---|---|---|
| committer | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2018-05-28 14:04:31 -0300 |
| commit | 7ac470c22e9e179daf0a10579a9f9e347cf6f94f (patch) | |
| tree | 52088fe954f23db0167120b29f0b3ec8b6828d7a /pom.xml | |
Move SCL into new project
SCL is now independant of dicelang, and thus deserving of its own repo.
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 34 |
1 files changed, 34 insertions, 0 deletions
@@ -0,0 +1,34 @@ +<?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> + <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> + + + <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> |
