2021-01-07 22:32:34 +01: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>
|
2022-03-10 15:29:28 +01:00
|
|
|
<artifactId>parent</artifactId>
|
2021-12-07 04:35:30 +01:00
|
|
|
<packaging>pom</packaging>
|
2022-03-22 07:34:46 +01:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
2022-03-04 19:58:40 +01:00
|
|
|
|
2021-12-07 04:35:30 +01:00
|
|
|
<modules>
|
2021-12-07 04:53:18 +01:00
|
|
|
<module>shared</module>
|
2022-03-04 19:58:40 +01:00
|
|
|
<module>nms</module>
|
2021-12-07 04:35:30 +01:00
|
|
|
<module>plugin</module>
|
|
|
|
</modules>
|
2021-01-07 22:32:34 +01:00
|
|
|
|
2021-11-30 10:57:33 +01: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>
|
|
|
|
|
2023-06-11 07:56:28 +02:00
|
|
|
<lombok.version>1.18.26</lombok.version>
|
2023-06-10 10:54:24 +02:00
|
|
|
<protocollib.version>5.0.0</protocollib.version>
|
2023-06-10 09:32:16 +02:00
|
|
|
<spigot.version>1.20-R0.1-SNAPSHOT</spigot.version>
|
2023-06-11 08:22:50 +02:00
|
|
|
<junit.version>4.13.2</junit.version>
|
2023-06-11 08:26:05 +02:00
|
|
|
<junit-jupiter.version>5.9.3</junit-jupiter.version>
|
2023-06-10 11:36:32 +02:00
|
|
|
<paper-api.version>1.19.4-R0.1-SNAPSHOT</paper-api.version>
|
2023-06-11 07:56:28 +02:00
|
|
|
<bungeecord-chat.version>1.16-R0.4</bungeecord-chat.version>
|
2023-06-11 16:56:13 +02:00
|
|
|
<adventure-minimessage.version>4.2.0-SNAPSHOT</adventure-minimessage.version>
|
|
|
|
<adventure-text.version>4.9.3</adventure-text.version>
|
2021-11-30 10:57:33 +01:00
|
|
|
</properties>
|
|
|
|
|
2021-12-07 04:35:30 +01:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
2022-12-19 18:38:18 +01:00
|
|
|
<!--<dependency>
|
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib</artifactId>
|
|
|
|
<version>${protocollib.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>-->
|
2021-12-07 04:35:30 +01:00
|
|
|
<dependency>
|
2023-05-11 07:49:38 +02:00
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
2021-12-07 04:35:30 +01:00
|
|
|
<artifactId>ProtocolLib</artifactId>
|
2023-06-10 10:54:24 +02:00
|
|
|
<version>${protocollib.version}</version>
|
2022-12-19 19:31:42 +01:00
|
|
|
<optional>true</optional>
|
2021-12-07 04:35:30 +01:00
|
|
|
</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>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2021-01-07 22:32:34 +01:00
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>md_5-releases</id>
|
|
|
|
<url>https://repo.md-5.net/content/groups/public/</url>
|
|
|
|
</repository>
|
2021-12-13 07:02:08 +01:00
|
|
|
|
2021-01-07 22:32:34 +01:00
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2021-12-13 07:02:08 +01:00
|
|
|
|
2021-01-07 22:32:34 +01:00
|
|
|
<repository>
|
|
|
|
<id>papermc</id>
|
|
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
|
|
</repository>
|
2021-12-13 07:02:08 +01:00
|
|
|
|
|
|
|
<!-- Lumine is a repo hosted by the creators of MythicCraft -->
|
2022-02-02 08:16:24 +01:00
|
|
|
<repository>
|
|
|
|
<id>lumine</id>
|
|
|
|
<url>https://mvn.lumine.io/repository/maven-public/</url>
|
|
|
|
</repository>
|
2021-12-13 07:02:08 +01:00
|
|
|
|
2022-12-19 18:38:18 +01:00
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
|
|
|
|
2021-03-16 04:45:57 +01:00
|
|
|
<repository>
|
|
|
|
<id>dmulloy2-repo</id>
|
|
|
|
<url>https://repo.dmulloy2.net/nexus/repository/public/</url>
|
|
|
|
</repository>
|
2021-01-07 22:32:34 +01: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>
|