2019-07-08 17:55:14 +00: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"
|
|
|
|
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>
|
|
|
|
<groupId>org.geysermc</groupId>
|
|
|
|
<artifactId>geyser-parent</artifactId>
|
2021-09-10 18:10:56 +00:00
|
|
|
<version>1.4.3-SNAPSHOT</version>
|
2019-07-08 17:55:14 +00:00
|
|
|
<packaging>pom</packaging>
|
2019-12-09 04:41:50 +00:00
|
|
|
<name>Geyser</name>
|
2019-07-08 17:55:14 +00:00
|
|
|
<description>Allows for players from Minecraft Bedrock Edition to join Minecraft Java Edition servers.</description>
|
|
|
|
<url>https://geysermc.org</url>
|
2019-07-24 18:50:51 +00:00
|
|
|
|
2019-07-08 17:55:14 +00:00
|
|
|
<properties>
|
2019-07-08 22:28:22 +00:00
|
|
|
<outputName>Geyser</outputName>
|
2019-07-08 17:55:14 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2021-09-10 18:10:56 +00:00
|
|
|
<maven.compiler.source>16</maven.compiler.source>
|
|
|
|
<maven.compiler.target>16</maven.compiler.target>
|
2019-07-08 17:55:14 +00:00
|
|
|
</properties>
|
2019-07-24 18:50:51 +00:00
|
|
|
|
2019-07-08 17:55:14 +00:00
|
|
|
<organization>
|
|
|
|
<name>GeyserMC</name>
|
|
|
|
<url>https://github.com/GeyserMC/Geyser/blob/master/pom.xml</url>
|
|
|
|
</organization>
|
2019-07-24 18:50:51 +00:00
|
|
|
|
2019-07-08 17:55:14 +00:00
|
|
|
<scm>
|
|
|
|
<connection>scm:git:https://github.com/GeyserMC/Geyser.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:GeyserMC/Geyser.git</developerConnection>
|
|
|
|
<url>https://github.com/GeyserMC/Geyser</url>
|
|
|
|
</scm>
|
2019-07-24 18:50:51 +00:00
|
|
|
|
2019-07-08 17:55:14 +00:00
|
|
|
<modules>
|
2021-07-17 18:36:04 +00:00
|
|
|
<module>ap</module>
|
2019-12-01 21:16:52 +00:00
|
|
|
<module>bootstrap</module>
|
2019-07-08 17:55:14 +00:00
|
|
|
<module>common</module>
|
|
|
|
<module>connector</module>
|
|
|
|
</modules>
|
2019-07-24 18:50:51 +00:00
|
|
|
|
2021-09-10 18:10:56 +00:00
|
|
|
<pluginRepositories>
|
|
|
|
<!-- Remove once maven-shade-plugin gets a stable release that supports Java 16 -->
|
|
|
|
<pluginRepository>
|
|
|
|
<id>apache.snapshots</id>
|
|
|
|
<url>https://repository.apache.org/snapshots/</url>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
|
2019-07-08 17:55:14 +00:00
|
|
|
<repositories>
|
2021-09-10 18:46:58 +00:00
|
|
|
<!-- Remove once maven-shade-plugin gets a stable release that supports Java 16 -->
|
|
|
|
<repository>
|
|
|
|
<id>apache.snapshots</id>
|
|
|
|
<url>https://repository.apache.org/snapshots/</url>
|
|
|
|
</repository>
|
2019-08-12 21:13:05 +00:00
|
|
|
<repository>
|
2020-06-04 02:57:36 +00:00
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
2019-08-12 21:13:05 +00:00
|
|
|
</repository>
|
2019-07-08 19:13:31 +00:00
|
|
|
<repository>
|
2020-10-27 11:02:25 +00:00
|
|
|
<id>opencollab-release-repo</id>
|
|
|
|
<url>https://repo.opencollab.dev/maven-releases/</url>
|
2019-07-24 18:50:51 +00:00
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
2020-10-27 11:02:25 +00:00
|
|
|
<id>opencollab-snapshot-repo</id>
|
|
|
|
<url>https://repo.opencollab.dev/maven-snapshots/</url>
|
2019-07-24 18:50:51 +00:00
|
|
|
<releases>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
2019-07-08 19:13:31 +00:00
|
|
|
</repository>
|
2020-07-06 22:41:54 +00:00
|
|
|
<repository>
|
|
|
|
<id>sonatype</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2019-07-08 17:55:14 +00:00
|
|
|
</repositories>
|
2019-07-24 18:50:51 +00:00
|
|
|
|
2019-12-09 04:41:50 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2021-06-05 00:02:10 +00:00
|
|
|
<version>1.18.20</version>
|
2019-12-09 04:41:50 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-09-14 15:28:29 +00:00
|
|
|
</project>
|