2013-12-14 19:40:30 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2014-03-01 19:47:32 -05:00
|
|
|
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>
|
2018-02-01 01:50:23 -05:00
|
|
|
|
2017-03-01 19:11:44 -05:00
|
|
|
<groupId>com.github.steveice10</groupId>
|
2014-03-01 19:47:32 -05:00
|
|
|
<artifactId>mcprotocollib</artifactId>
|
2023-08-13 10:17:10 -04:00
|
|
|
<version>1.20.2-1-SNAPSHOT</version>
|
2014-03-01 19:47:32 -05:00
|
|
|
<packaging>jar</packaging>
|
2012-08-12 21:56:36 -04:00
|
|
|
|
2014-03-01 19:47:32 -05:00
|
|
|
<name>MCProtocolLib</name>
|
2022-02-14 22:27:35 -05:00
|
|
|
<description>MCProtocolLib is a simple library for communicating with Minecraft clients and servers.</description>
|
|
|
|
<url>http://github.com/GeyserMC/MCProtocolLib/</url>
|
2012-08-12 21:56:36 -04:00
|
|
|
|
2015-07-20 14:01:13 -04:00
|
|
|
<scm>
|
2022-02-14 22:27:35 -05:00
|
|
|
<connection>scm:git:git@github.com:GeyserMC/MCProtocolLib.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:GeyserMC/MCProtocolLib.git</developerConnection>
|
|
|
|
<url>git@github.com:GeyserMC/MCProtocolLib/</url>
|
2015-07-20 14:01:13 -04:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2019-08-18 01:08:45 -04:00
|
|
|
<jdk.version>1.8</jdk.version>
|
2021-10-31 14:56:02 -04:00
|
|
|
<adventure.version>4.9.3</adventure.version>
|
2018-07-02 18:21:55 -04:00
|
|
|
<argLine></argLine>
|
2015-07-20 14:01:13 -04:00
|
|
|
</properties>
|
|
|
|
|
2014-03-01 19:47:32 -05:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT</name>
|
|
|
|
<url>http://www.opensource.org/licenses/mit-license.html</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2012-08-12 21:56:36 -04:00
|
|
|
|
2015-07-20 14:01:13 -04:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>steveice10</id>
|
|
|
|
<name>Steveice10</name>
|
|
|
|
<email>Steveice10@gmail.com</email>
|
|
|
|
</developer>
|
2022-02-14 22:27:35 -05:00
|
|
|
<developer>
|
|
|
|
<id>GeyserMC</id>
|
|
|
|
<name>GeyserMC</name>
|
|
|
|
<url>https://geysermc.org/</url>
|
|
|
|
<organization>GeyserMC</organization>
|
|
|
|
<organizationUrl>https://github.com/GeyserMC</organizationUrl>
|
|
|
|
</developer>
|
2015-07-20 14:01:13 -04:00
|
|
|
</developers>
|
2012-08-12 21:56:36 -04:00
|
|
|
|
2018-02-01 01:50:23 -05:00
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
2022-02-14 22:27:35 -05:00
|
|
|
<url>https://github.com/GeyserMC/MCProtocolLib/issues</url>
|
2018-02-01 01:50:23 -05:00
|
|
|
</issueManagement>
|
|
|
|
|
2014-03-01 19:47:32 -05:00
|
|
|
<repositories>
|
2021-11-13 14:52:39 -05:00
|
|
|
<repository>
|
|
|
|
<id>opencollab-release-repo</id>
|
|
|
|
<url>https://repo.opencollab.dev/maven-releases/</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>opencollab-snapshot-repo</id>
|
|
|
|
<url>https://repo.opencollab.dev/maven-snapshots/</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
2014-03-01 19:47:32 -05:00
|
|
|
<repository>
|
2017-03-01 19:11:44 -05:00
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
2014-03-01 19:47:32 -05:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
2012-08-12 21:56:36 -04:00
|
|
|
|
2014-03-01 19:47:32 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2023-09-07 17:19:03 -04:00
|
|
|
<groupId>com.github.GeyserMC</groupId>
|
2014-03-01 19:47:32 -05:00
|
|
|
<artifactId>opennbt</artifactId>
|
2023-09-07 17:19:03 -04:00
|
|
|
<version>eae1397</version>
|
2014-03-01 19:47:32 -05:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-02-14 22:27:35 -05:00
|
|
|
<groupId>com.github.GeyserMC</groupId>
|
2014-03-30 13:48:44 -04:00
|
|
|
<artifactId>mcauthlib</artifactId>
|
2021-09-06 18:05:31 -04:00
|
|
|
<version>6f3d6aada5</version>
|
2018-02-04 08:29:55 -05:00
|
|
|
<scope>compile</scope>
|
2014-03-01 19:47:32 -05:00
|
|
|
</dependency>
|
2020-11-21 16:42:11 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>adventure-text-serializer-gson</artifactId>
|
2021-08-23 14:23:35 -04:00
|
|
|
<version>${adventure.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>adventure-text-serializer-gson-legacy-impl</artifactId>
|
|
|
|
<version>${adventure.version}</version>
|
|
|
|
<scope>compile</scope>
|
2020-11-21 16:42:11 -05:00
|
|
|
</dependency>
|
2019-08-18 01:08:45 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2021-10-19 21:49:27 -04:00
|
|
|
<version>1.18.22</version>
|
2019-08-18 01:08:45 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-05-25 18:42:42 -04:00
|
|
|
<dependency>
|
2022-10-29 17:19:20 -04:00
|
|
|
<groupId>org.cloudburstmc.math</groupId>
|
|
|
|
<artifactId>api</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.cloudburstmc.math</groupId>
|
|
|
|
<artifactId>immutable</artifactId>
|
|
|
|
<version>2.0</version>
|
2022-05-25 18:42:42 -04:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2022-06-15 18:28:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.nukkitx.fastutil</groupId>
|
|
|
|
<artifactId>fastutil-object-int-maps</artifactId>
|
|
|
|
<version>8.5.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2015-08-21 22:27:51 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2020-10-13 02:47:14 -04:00
|
|
|
<version>4.13.1</version>
|
2015-08-21 22:27:51 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-03-01 19:47:03 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-all</artifactId>
|
2021-08-15 12:29:38 -04:00
|
|
|
<version>4.1.66.Final</version>
|
2018-02-01 13:13:37 -05:00
|
|
|
<scope>compile</scope>
|
2014-03-01 19:47:03 -05:00
|
|
|
</dependency>
|
2020-12-18 22:02:55 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-codec-haproxy</artifactId>
|
2021-08-15 12:29:38 -04:00
|
|
|
<version>4.1.66.Final</version>
|
2020-12-18 22:02:55 -05:00
|
|
|
<scope>compile</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2021-08-15 12:29:38 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty.incubator</groupId>
|
|
|
|
<artifactId>netty-incubator-transport-native-io_uring</artifactId>
|
|
|
|
<version>0.0.8.Final</version>
|
|
|
|
<classifier>linux-x86_64</classifier>
|
|
|
|
</dependency>
|
2022-06-04 10:05:39 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.spotbugs</groupId>
|
|
|
|
<artifactId>spotbugs-annotations</artifactId>
|
|
|
|
<version>4.3.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.nukkitx.fastutil</groupId>
|
|
|
|
<artifactId>fastutil-int-object-maps</artifactId>
|
|
|
|
<version>8.5.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2014-03-01 19:47:32 -05:00
|
|
|
</dependencies>
|
2012-08-12 21:56:36 -04:00
|
|
|
|
2014-03-01 19:47:32 -05:00
|
|
|
<build>
|
|
|
|
<defaultGoal>clean install</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2018-02-01 01:50:23 -05:00
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>3.0.2</version>
|
2014-03-01 19:47:32 -05:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2017-03-01 19:11:44 -05:00
|
|
|
<version>3.0.2</version>
|
2014-03-01 19:47:32 -05:00
|
|
|
</plugin>
|
2016-12-15 19:26:18 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2018-02-01 01:50:23 -05:00
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.7.0</version>
|
|
|
|
<configuration>
|
2018-02-04 08:29:55 -05:00
|
|
|
<source>${jdk.version}</source>
|
|
|
|
<target>${jdk.version}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2018-08-20 15:21:34 -04:00
|
|
|
<version>2.22.0</version>
|
2018-02-04 08:29:55 -05:00
|
|
|
<configuration>
|
|
|
|
<!-- Force the right file encoding during unit testing -->
|
2018-07-02 18:21:55 -04:00
|
|
|
<argLine>-Dfile.encoding=${project.build.sourceEncoding} @{argLine}</argLine>
|
2018-02-01 01:50:23 -05:00
|
|
|
</configuration>
|
2016-12-15 19:26:18 -05:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2018-10-31 02:20:37 -04:00
|
|
|
<version>3.0.1</version>
|
2016-12-15 19:26:18 -05:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
2018-02-01 01:50:23 -05:00
|
|
|
<goal>aggregate</goal>
|
2016-12-15 19:26:18 -05:00
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2018-02-01 01:50:23 -05:00
|
|
|
<configuration>
|
|
|
|
<show>public</show>
|
|
|
|
<failOnError>false</failOnError>
|
|
|
|
</configuration>
|
2016-12-15 19:26:18 -05:00
|
|
|
</plugin>
|
2014-03-01 19:47:32 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2018-02-01 01:50:23 -05:00
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
2014-03-01 19:47:32 -05:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2018-02-01 01:50:23 -05:00
|
|
|
<id>attach-sources</id>
|
2014-03-01 19:47:32 -05:00
|
|
|
<goals>
|
2018-02-01 01:50:23 -05:00
|
|
|
<goal>jar</goal>
|
2014-03-01 19:47:32 -05:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2018-02-01 01:50:23 -05:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<version>2.5.2</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>2.8.2</version>
|
2014-03-01 19:47:32 -05:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2023-03-14 08:28:21 -04:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>deploy</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>opencollab-release-repo</id>
|
|
|
|
<url>https://repo.opencollab.dev/maven-releases/</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>opencollab-snapshot-repo</id>
|
|
|
|
<url>https://repo.opencollab.dev/maven-snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2012-08-12 21:56:36 -04:00
|
|
|
</project>
|