mirror of
https://github.com/TotalFreedomMC/TF-LibsDisguises.git
synced 2024-10-31 20:09:18 +00:00
109 lines
4 KiB
XML
109 lines
4 KiB
XML
<?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>parent</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<modules>
|
|
<module>shared</module>
|
|
<module>nms</module>
|
|
<module>plugin</module>
|
|
</modules>
|
|
|
|
<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>
|
|
<spigot.version>1.18.1-R0.1-SNAPSHOT</spigot.version>
|
|
<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>
|
|
|
|
<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>
|
|
<dependency>
|
|
<groupId>com.mojang</groupId>
|
|
<artifactId>authlib</artifactId>
|
|
<version>1.5.21</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>md_5-releases</id>
|
|
<url>https://repo.md-5.net/content/groups/public/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>papermc</id>
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
</repository>
|
|
|
|
<!-- Lumine is a repo hosted by the creators of MythicCraft -->
|
|
<repository>
|
|
<id>lumine</id>
|
|
<url>https://mvn.lumine.io/repository/maven-public/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>dmulloy2-repo</id>
|
|
<url>https://repo.dmulloy2.net/nexus/repository/public/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>minecraft-repo</id>
|
|
<url>https://libraries.minecraft.net/</url>
|
|
</repository>
|
|
</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>
|