BungeeCord/pom.xml

169 lines
5.8 KiB
XML
Raw Normal View History

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>
<groupId>net.md-5</groupId>
2013-01-10 07:41:37 +01:00
<artifactId>bungeecord-parent</artifactId>
2019-12-10 22:00:00 +01:00
<version>1.15-SNAPSHOT</version>
2013-01-10 07:41:37 +01:00
<packaging>pom</packaging>
2012-10-05 03:01:31 +02:00
<name>BungeeCord-Parent</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>
<module>bootstrap</module>
2014-08-31 10:56:03 +02:00
<module>chat</module>
<module>config</module>
2013-05-14 03:30:08 +02:00
<module>event</module>
<module>log</module>
<module>module</module>
2013-02-09 09:08:56 +01:00
<module>protocol</module>
2013-01-12 04:24:39 +01:00
<module>proxy</module>
<module>query</module>
2013-11-18 21:16:06 +01:00
<module>native</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>
2017-10-28 07:42:12 +02:00
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
2012-10-05 03:01:31 +02:00
<properties>
<build.number>unknown</build.number>
2020-01-15 04:34:18 +01:00
<netty.version>4.1.45.Final</netty.version>
2020-01-21 22:00:00 +01:00
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
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>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
2020-01-21 22:00:00 +01:00
<version>4.13</version>
<scope>test</scope>
</dependency>
2013-10-11 09:40:21 +02:00
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
2020-01-21 22:00:00 +01:00
<version>21.0</version>
2013-10-11 09:40:21 +02:00
<scope>compile</scope>
</dependency>
2014-07-12 06:01:06 +02:00
<dependency>
<groupId>com.google.code.findbugs</groupId>
2017-08-06 03:18:14 +02:00
<artifactId>findbugs-annotations</artifactId>
<version>3.0.1</version>
2014-07-12 06:01:06 +02:00
<scope>provided</scope>
</dependency>
2012-10-05 03:01:31 +02:00
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
2019-12-01 07:32:32 +01:00
<version>1.18.10</version>
2012-10-05 03:01:31 +02:00
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
2016-01-16 03:52:53 +01:00
<groupId>net.md-5</groupId>
<artifactId>scriptus</artifactId>
2020-01-29 06:40:29 +01:00
<version>0.3.2</version>
2012-10-05 03:01:31 +02:00
<configuration>
2016-01-16 03:52:53 +01:00
<format>git:${project.name}:${project.version}:%s:${build.number}</format>
2012-10-05 03:01:31 +02:00
</configuration>
<executions>
<execution>
<phase>initialize</phase>
2012-10-05 03:01:31 +02:00
<goals>
2016-01-16 03:52:53 +01:00
<goal>describe</goal>
2012-10-05 03:01:31 +02:00
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
2019-12-01 07:32:32 +01:00
<version>3.1.0</version>
<executions>
<execution>
2019-04-23 13:23:06 +02:00
<phase>process-classes</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<configLocation>checkstyle.xml</configLocation>
<includeResources>false</includeResources>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
</configuration>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
2020-01-31 23:32:35 +01:00
<version>8.29</version>
</dependency>
</dependencies>
</plugin>
2012-10-05 03:01:31 +02:00
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
2019-12-01 07:32:32 +01:00
<version>1.18</version>
<executions>
<execution>
<phase>process-classes</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
2012-10-05 03:01:31 +02:00
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>java18</artifactId>
2017-07-01 11:04:04 +02:00
<version>1.0</version>
</signature>
2012-10-05 03:01:31 +02:00
</configuration>
</plugin>
</plugins>
</build>
</project>