Implement skeleton modules for our 5 initial commands.

This commit is contained in:
md_5
2014-01-10 09:34:06 +11:00
parent cb4f70ecc7
commit 7dba8c8a87
13 changed files with 163 additions and 2 deletions

20
module/cmd-list/pom.xml Normal file
View File

@@ -0,0 +1,20 @@
<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>
<parent>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-module</artifactId>
<version>1.7-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-module-cmd-list</artifactId>
<version>1.7-SNAPSHOT</version>
<packaging>pom</packaging>
<name>cmd_list</name>
<description>Provides the glist command</description>
</project>

View File

@@ -0,0 +1,4 @@
name: ${project.name}
main: foo
version: ${describe}
description: ${project.description}