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>
|
2023-08-07 00:01:47 +02:00
|
|
|
<version>1.20-R0.2-SNAPSHOT</version>
|
2013-01-10 07:41:37 +01:00
|
|
|
<packaging>pom</packaging>
|
2012-10-05 03:01:31 +02:00
|
|
|
|
2014-01-09 23:34:06 +01: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>
|
2020-06-24 10:35:29 +02:00
|
|
|
<name>Modified BSD 3-Clause License</name>
|
|
|
|
<url>https://github.com/SpigotMC/BungeeCord/blob/master/LICENSE</url>
|
2012-10-05 03:01:31 +02:00
|
|
|
<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>
|
2014-08-31 10:56:03 +02:00
|
|
|
<module>chat</module>
|
2013-09-23 02:28:30 +02:00
|
|
|
<module>config</module>
|
2013-05-14 03:30:08 +02:00
|
|
|
<module>event</module>
|
2016-07-11 03:04:58 +02:00
|
|
|
<module>log</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>
|
2021-05-14 00:39:17 +02:00
|
|
|
<module>slf4j</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>
|
2020-06-24 10:09:35 +02:00
|
|
|
<repository>
|
|
|
|
<id>sonatype-nexus-staging</id>
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
2017-10-28 07:42:12 +02:00
|
|
|
</distributionManagement>
|
|
|
|
|
2012-10-05 03:01:31 +02:00
|
|
|
<properties>
|
|
|
|
<build.number>unknown</build.number>
|
2023-09-20 10:05:28 +02:00
|
|
|
<lombok.version>1.18.30</lombok.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>
|
|
|
|
|
2023-03-15 08:18:15 +01:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-bom</artifactId>
|
2023-08-24 12:07:19 +02:00
|
|
|
<version>4.1.97.Final</version>
|
2023-03-15 08:18:15 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2012-10-05 03:01:31 +02:00
|
|
|
<dependencies>
|
2013-05-13 10:36:12 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2021-12-18 02:03:28 +01:00
|
|
|
<version>4.13.2</version>
|
2013-05-13 10:36:12 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2013-10-11 09:40:21 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2023-09-17 00:01:45 +02:00
|
|
|
<version>32.1.2-jre</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>
|
2021-04-04 09:24:23 +02:00
|
|
|
<version>${lombok.version}</version>
|
2012-10-05 03:01:31 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2023-09-10 03:41:56 +02:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2023-09-16 02:22:07 +02:00
|
|
|
<version>3.6.0</version>
|
2023-09-10 03:41:56 +02:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2012-10-05 03:01:31 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2016-01-16 03:52:53 +01:00
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>scriptus</artifactId>
|
2023-07-15 02:29:22 +02:00
|
|
|
<version>0.5.0</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>
|
2014-01-10 00:03:02 +01:00
|
|
|
<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>
|
2021-02-13 23:29:55 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2023-03-14 17:30:00 +01:00
|
|
|
<version>3.11.0</version>
|
2021-02-13 23:29:55 +01:00
|
|
|
</plugin>
|
2019-04-23 07:22:02 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
2023-05-23 23:38:27 +02:00
|
|
|
<version>3.3.0</version>
|
2019-04-23 07:22:02 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2019-04-23 13:23:06 +02:00
|
|
|
<phase>process-classes</phase>
|
2019-04-23 07:22:02 +02:00
|
|
|
<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>
|
2021-11-22 05:27:24 +01:00
|
|
|
<version>8.45.1</version>
|
2019-04-23 07:22:02 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
2012-10-05 03:01:31 +02:00
|
|
|
<plugin>
|
2015-02-08 03:07:41 +01:00
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
2023-04-02 04:59:50 +02:00
|
|
|
<version>1.23</version>
|
2015-02-08 03:07:41 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>process-classes</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>check</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2012-10-05 03:01:31 +02:00
|
|
|
<configuration>
|
2015-02-08 03:07:41 +01:00
|
|
|
<signature>
|
|
|
|
<groupId>org.codehaus.mojo.signature</groupId>
|
2018-12-20 00:33:36 +01:00
|
|
|
<artifactId>java18</artifactId>
|
2017-07-01 11:04:04 +02:00
|
|
|
<version>1.0</version>
|
2015-02-08 03:07:41 +01:00
|
|
|
</signature>
|
2012-10-05 03:01:31 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2023-04-19 23:41:22 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
2023-09-12 12:28:08 +02:00
|
|
|
<version>3.4.1</version>
|
2023-04-19 23:41:22 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>enforce</id>
|
|
|
|
<configuration>
|
|
|
|
<rules>
|
|
|
|
<dependencyConvergence>
|
|
|
|
<excludes>
|
|
|
|
<!-- org.apache.maven:maven-resolver-provider is inconsistent -->
|
|
|
|
<exclude>org.apache.commons:commons-lang3</exclude>
|
|
|
|
<!-- org.apache.maven:maven-resolver-transport-http is inconsistent -->
|
|
|
|
<exclude>org.apache.httpcomponents:httpcore</exclude>
|
|
|
|
</excludes>
|
|
|
|
</dependencyConvergence>
|
|
|
|
</rules>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
2023-06-18 12:55:47 +02:00
|
|
|
<!--<goal>enforce</goal>--> <!-- Disabled until maven-resolver is upgraded again. -->
|
2023-04-19 23:41:22 +02:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2012-10-05 03:01:31 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-02-04 04:59:52 +01:00
|
|
|
|
|
|
|
<profiles>
|
2021-02-13 23:29:55 +01:00
|
|
|
<profile>
|
|
|
|
<id>jdk-9-release</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>[9,)</jdk>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.release>8</maven.compiler.release>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>jdk-9-javadoc</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>[9,)</jdk>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<additionalOptions>-html5</additionalOptions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2021-04-04 09:24:23 +02:00
|
|
|
<profile>
|
|
|
|
<id>jdk-15-javadoc</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>[15,)</jdk>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<doclint>none</doclint>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2020-02-04 04:59:52 +01:00
|
|
|
<profile>
|
|
|
|
<id>dist</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2023-05-23 23:38:43 +02:00
|
|
|
<version>3.3.0</version>
|
2020-02-04 04:59:52 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok-maven-plugin</artifactId>
|
2021-04-04 09:24:23 +02:00
|
|
|
<version>1.18.20.0</version>
|
2020-02-04 04:59:52 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>delombok</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<addOutputDirectory>false</addOutputDirectory>
|
|
|
|
<outputDirectory>${project.build.directory}/delombok</outputDirectory>
|
|
|
|
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
|
|
|
|
</configuration>
|
2021-04-04 09:24:23 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2020-02-04 04:59:52 +01:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<!-- Execute Javadoc once normally to catch any warnings -->
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<!-- Then execute it again to generate properly with delombok -->
|
|
|
|
<execution>
|
|
|
|
<id>delombok</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<!-- lombok does not add @return or @param which causes warnings, so ignore -->
|
|
|
|
<doclint>none</doclint>
|
|
|
|
<sourcepath>${project.build.directory}/delombok</sourcepath>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<quiet>true</quiet>
|
|
|
|
<failOnWarnings>true</failOnWarnings>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2020-06-26 10:44:14 +02:00
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
2023-05-20 03:09:14 +02:00
|
|
|
<version>3.1.0</version>
|
2020-06-26 10:44:14 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
2020-02-04 04:59:52 +01:00
|
|
|
</profiles>
|
2012-10-05 03:01:31 +02:00
|
|
|
</project>
|