2013-01-12 04:24:39 +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">
|
2012-10-05 03:01:31 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2013-01-07 08:09:40 +01:00
|
|
|
<parent>
|
|
|
|
<groupId>org.sonatype.oss</groupId>
|
|
|
|
<artifactId>oss-parent</artifactId>
|
|
|
|
<version>7</version>
|
|
|
|
</parent>
|
|
|
|
|
2012-10-05 03:01:31 +02:00
|
|
|
<groupId>net.md-5</groupId>
|
2013-01-10 07:41:37 +01:00
|
|
|
<artifactId>bungeecord-parent</artifactId>
|
2013-10-23 08:33:21 +02:00
|
|
|
<version>1.7-SNAPSHOT</version>
|
2013-01-10 07:41:37 +01:00
|
|
|
<packaging>pom</packaging>
|
2012-10-05 03:01:31 +02:00
|
|
|
|
|
|
|
<name>BungeeCord</name>
|
2013-01-10 07:56:09 +01:00
|
|
|
<description>Parent project for all BungeeCord modules.</description>
|
2013-09-09 06:41:58 +02:00
|
|
|
<url>https://github.com/SpigotMC/BungeeCord</url>
|
2012-10-05 03:01:31 +02:00
|
|
|
<inceptionYear>2012</inceptionYear>
|
2012-10-12 07:07:20 +02:00
|
|
|
<organization>
|
2013-11-06 10:11:17 +01:00
|
|
|
<name>SpigotMC</name>
|
2013-09-09 06:41:58 +02:00
|
|
|
<url>https://github.com/SpigotMC</url>
|
2012-10-12 07:07:20 +02:00
|
|
|
</organization>
|
2012-10-05 03:01:31 +02:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The BSD 3-Clause License</name>
|
|
|
|
<url>http://opensource.org/licenses/BSD-3-Clause</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2012-10-12 07:07:20 +02:00
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>md_5</id>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
2013-01-10 07:41:37 +01:00
|
|
|
<modules>
|
2013-01-10 07:56:09 +01:00
|
|
|
<module>api</module>
|
2013-09-25 09:21:03 +02:00
|
|
|
<module>bootstrap</module>
|
2013-09-23 02:28:30 +02:00
|
|
|
<module>config</module>
|
2013-05-14 03:30:08 +02:00
|
|
|
<module>event</module>
|
2013-02-09 09:08:56 +01:00
|
|
|
<module>protocol</module>
|
2013-01-12 04:24:39 +01:00
|
|
|
<module>proxy</module>
|
2013-09-24 02:09:55 +02:00
|
|
|
<module>query</module>
|
2013-01-10 07:41:37 +01:00
|
|
|
</modules>
|
|
|
|
|
2012-10-05 03:01:31 +02:00
|
|
|
<scm>
|
2013-09-09 06:41:58 +02:00
|
|
|
<connection>scm:git:git@github.com:SpigotMC/BungeeCord.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:SpigotMC/BungeeCord.git</developerConnection>
|
|
|
|
<url>git@github.com:SpigotMC/BungeeCord.git</url>
|
2012-10-05 03:01:31 +02:00
|
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
2013-09-09 06:41:58 +02:00
|
|
|
<url>https://github.com/SpigotMC/BungeeCord/issues</url>
|
2012-10-05 03:01:31 +02:00
|
|
|
</issueManagement>
|
|
|
|
<ciManagement>
|
|
|
|
<system>jenkins</system>
|
|
|
|
<url>http://ci.md-5.net/job/BungeeCord</url>
|
|
|
|
</ciManagement>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<build.number>unknown</build.number>
|
2013-11-15 06:28:35 +01:00
|
|
|
<netty.version>4.0.12.Final</netty.version>
|
2013-03-14 10:35:58 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2012-10-05 03:01:31 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2013-05-13 10:36:12 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-10-11 09:40:21 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>14.0.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.sf.trove4j</groupId>
|
|
|
|
<artifactId>trove4j</artifactId>
|
|
|
|
<version>3.0.3</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2012-10-05 03:01:31 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2013-10-19 01:01:42 +02:00
|
|
|
<version>1.12.2</version>
|
2012-10-05 03:01:31 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.lukegb.mojo</groupId>
|
|
|
|
<artifactId>gitdescribe-maven-plugin</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<configuration>
|
|
|
|
<outputPrefix>git-${project.name}-${project.version}-</outputPrefix>
|
|
|
|
<outputPostfix>-${build.number}</outputPostfix>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>gitdescribe</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2013-07-04 03:12:25 +02:00
|
|
|
<version>2.5.1</version>
|
2012-10-05 03:01:31 +02:00
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|