2014-01-09 23:34:06 +01:00
|
|
|
|
|
|
|
<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-parent</artifactId>
|
2016-02-29 23:13:13 +01:00
|
|
|
<version>1.9-SNAPSHOT</version>
|
2014-01-09 23:34:06 +01:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-module</artifactId>
|
2016-02-29 23:13:13 +01:00
|
|
|
<version>1.9-SNAPSHOT</version>
|
2014-01-09 23:34:06 +01:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2014-01-09 23:53:33 +01:00
|
|
|
<name>BungeeCord Modules</name>
|
2014-01-09 23:34:06 +01:00
|
|
|
<description>Parent project for all BungeeCord modules.</description>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>cmd-alert</module>
|
|
|
|
<module>cmd-find</module>
|
|
|
|
<module>cmd-list</module>
|
|
|
|
<module>cmd-send</module>
|
|
|
|
<module>cmd-server</module>
|
2014-01-16 23:31:46 +01:00
|
|
|
<module>reconnect-yaml</module>
|
2014-01-09 23:34:06 +01:00
|
|
|
</modules>
|
|
|
|
|
2014-03-10 01:13:49 +01:00
|
|
|
<properties>
|
|
|
|
<module.author>SpigotMC</module.author>
|
|
|
|
</properties>
|
|
|
|
|
2014-01-09 23:53:33 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-api</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2014-01-09 23:34:06 +01:00
|
|
|
<build>
|
|
|
|
<finalName>${project.name}</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>${basedir}/src/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2014-02-08 02:24:31 +01:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<!-- Don't deploy modules to maven repo, only APIs -->
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2014-01-09 23:34:06 +01:00
|
|
|
</build>
|
|
|
|
</project>
|