mirror of
https://github.com/SpigotMC/BungeeCord.git
synced 2024-11-03 09:10:12 +01:00
153 lines
5.2 KiB
XML
153 lines
5.2 KiB
XML
|
|
<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>org.sonatype.oss</groupId>
|
|
<artifactId>oss-parent</artifactId>
|
|
<version>9</version>
|
|
</parent>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
<artifactId>bungeecord-parent</artifactId>
|
|
<version>1.9-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>BungeeCord-Parent</name>
|
|
<description>Parent project for all BungeeCord modules.</description>
|
|
<url>https://github.com/SpigotMC/BungeeCord</url>
|
|
<inceptionYear>2012</inceptionYear>
|
|
<organization>
|
|
<name>SpigotMC</name>
|
|
<url>https://github.com/SpigotMC</url>
|
|
</organization>
|
|
<licenses>
|
|
<license>
|
|
<name>The BSD 3-Clause License</name>
|
|
<url>http://opensource.org/licenses/BSD-3-Clause</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>md_5</id>
|
|
</developer>
|
|
</developers>
|
|
|
|
<modules>
|
|
<module>api</module>
|
|
<module>bootstrap</module>
|
|
<module>chat</module>
|
|
<module>config</module>
|
|
<module>event</module>
|
|
<module>module</module>
|
|
<module>protocol</module>
|
|
<module>proxy</module>
|
|
<module>query</module>
|
|
<module>native</module>
|
|
</modules>
|
|
|
|
<scm>
|
|
<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>
|
|
</scm>
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/SpigotMC/BungeeCord/issues</url>
|
|
</issueManagement>
|
|
<ciManagement>
|
|
<system>jenkins</system>
|
|
<url>http://ci.md-5.net/job/BungeeCord</url>
|
|
</ciManagement>
|
|
|
|
<properties>
|
|
<build.number>unknown</build.number>
|
|
<netty.version>4.0.33.Final</netty.version>
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>18.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
<artifactId>findbugs</artifactId>
|
|
<version>3.0.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.14.8</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>net.md-5</groupId>
|
|
<artifactId>scriptus</artifactId>
|
|
<version>0.3.1</version>
|
|
<configuration>
|
|
<format>git:${project.name}:${project.version}:%s:${build.number}</format>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>initialize</phase>
|
|
<goals>
|
|
<goal>describe</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
|
<version>1.13</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>process-classes</phase>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<ignores>
|
|
<ignore>java.lang.ClassLoader</ignore>
|
|
<ignore>java.lang.Throwable</ignore>
|
|
<ignore>java.util.Locale</ignore>
|
|
</ignores>
|
|
<signature>
|
|
<groupId>org.codehaus.mojo.signature</groupId>
|
|
<artifactId>java16</artifactId>
|
|
<version>1.1</version>
|
|
</signature>
|
|
</configuration>
|
|
</plugin>
|
|
<!-- OSS Parent 9 uses 2.7, 2.10+ is broken anyway -->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.7</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|