2021-01-07 21:32:34 +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>
|
|
|
|
<!-- A good example on why temporary names for project identification shouldn't be used -->
|
|
|
|
<groupId>LibsDisguises</groupId>
|
|
|
|
<artifactId>LibsDisguises</artifactId>
|
2021-12-07 03:35:30 +00:00
|
|
|
<packaging>pom</packaging>
|
2021-12-23 04:12:14 +00:00
|
|
|
<version>10.0.27-SNAPSHOT</version>
|
2022-03-04 18:58:40 +00:00
|
|
|
|
2021-12-07 03:35:30 +00:00
|
|
|
<modules>
|
2021-12-07 03:53:18 +00:00
|
|
|
<module>shared</module>
|
2022-03-04 18:58:40 +00:00
|
|
|
<module>nms</module>
|
2021-12-07 03:35:30 +00:00
|
|
|
<module>plugin</module>
|
|
|
|
</modules>
|
2021-01-07 21:32:34 +00:00
|
|
|
|
2021-11-30 09:57:33 +00:00
|
|
|
<properties>
|
|
|
|
<build.number>unknown</build.number>
|
|
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
|
|
|
<maven.build.timestamp.format>dd/MM/yyyy HH:mm</maven.build.timestamp.format>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
|
|
|
<lombok.version>1.18.22</lombok.version>
|
|
|
|
<protocollib.version>4.7.0</protocollib.version>
|
2022-03-04 18:58:40 +00:00
|
|
|
<spigot.version>1.18.2-R0.1-SNAPSHOT</spigot.version>
|
2021-11-30 09:57:33 +00:00
|
|
|
<junit.version>4.13.2</junit.version>
|
|
|
|
<paper-api.version>1.16.5-R0.1-SNAPSHOT</paper-api.version>
|
|
|
|
<bungeecord-chat.version>1.12-SNAPSHOT</bungeecord-chat.version>
|
|
|
|
<adventure-minimessage.version>4.2.0-SNAPSHOT</adventure-minimessage.version>
|
|
|
|
<adventure-api.version>4.9.3</adventure-api.version>
|
|
|
|
<adventure-serializer.version>4.9.3</adventure-serializer.version>
|
|
|
|
</properties>
|
|
|
|
|
2021-12-07 03:35:30 +00:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib</artifactId>
|
|
|
|
<version>${protocollib.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>${spigot.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
|
|
|
<version>${spigot.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2022-03-05 01:22:55 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.mojang</groupId>
|
|
|
|
<artifactId>authlib</artifactId>
|
|
|
|
<version>3.3.39</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2021-12-07 03:35:30 +00:00
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2021-01-07 21:32:34 +00:00
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>md_5-releases</id>
|
|
|
|
<url>https://repo.md-5.net/content/groups/public/</url>
|
|
|
|
</repository>
|
2021-12-13 06:02:08 +00:00
|
|
|
|
2021-01-07 21:32:34 +00:00
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2021-12-13 06:02:08 +00:00
|
|
|
|
2021-01-07 21:32:34 +00:00
|
|
|
<repository>
|
|
|
|
<id>papermc</id>
|
|
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
|
|
</repository>
|
2021-12-13 06:02:08 +00:00
|
|
|
|
|
|
|
<!-- Lumine is a repo hosted by the creators of MythicCraft -->
|
2022-02-02 07:16:24 +00:00
|
|
|
<repository>
|
|
|
|
<id>lumine</id>
|
|
|
|
<url>https://mvn.lumine.io/repository/maven-public/</url>
|
|
|
|
</repository>
|
2021-12-13 06:02:08 +00:00
|
|
|
|
2021-03-16 03:45:57 +00:00
|
|
|
<repository>
|
|
|
|
<id>dmulloy2-repo</id>
|
|
|
|
<url>https://repo.dmulloy2.net/nexus/repository/public/</url>
|
|
|
|
</repository>
|
2021-01-07 21:32:34 +00:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>md_5-releases</id>
|
|
|
|
<url>https://repo.md-5.net/content/repositories/releases/</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>md_5-snapshots</id>
|
|
|
|
<url>https://repo.md-5.net/content/repositories/snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
|
|
|
</project>
|