diff options
| author | Ben Culkin <scorpress@gmail.com> | 2021-02-26 16:15:11 -0500 |
|---|---|---|
| committer | Ben Culkin <scorpress@gmail.com> | 2021-02-26 16:15:11 -0500 |
| commit | e55cb9852a106cff26517d7d1e85bc4b149884f3 (patch) | |
| tree | 2e5d8b8d1e4ec8a5893cc2372e84aade218e648a /commander/pom.xml | |
| parent | d7b2e924d762e66b3f2be76242ee761e90113a8c (diff) | |
Update
Diffstat (limited to 'commander/pom.xml')
| -rw-r--r-- | commander/pom.xml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/commander/pom.xml b/commander/pom.xml new file mode 100644 index 0000000..eaba4a6 --- /dev/null +++ b/commander/pom.xml @@ -0,0 +1,35 @@ +<?xml version="1.0"?> +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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>BJCUtils-Parent</artifactId> + <version>1.0.0</version> + </parent> + + <artifactId>commander</artifactId> + <name>commander</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> + <type>jar</type> + </dependency> + </dependencies> +</project> |
