mirror of
https://github.com/libraryaddict/LibsDisguises.git
synced 2024-12-04 13:54:35 +01:00
9b7cc9b1b3
I'll probably do the actual changelog in the release only, tiring
140 lines
5.0 KiB
XML
140 lines
5.0 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>minimessage</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>21</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<lombok.version>1.18.32</lombok.version>
|
|
<packetevents.version>2.3.0</packetevents.version>
|
|
<spigot.version>1.20.6-R0.1-SNAPSHOT</spigot.version>
|
|
<junit.version>4.13.2</junit.version>
|
|
<junit-jupiter.version>5.9.3</junit-jupiter.version>
|
|
<paper-api.version>1.20.3-R0.1-SNAPSHOT</paper-api.version>
|
|
<bungeecord-chat.version>1.16-R0.4</bungeecord-chat.version>
|
|
<adventure-minimessage.version>4.17.0</adventure-minimessage.version>
|
|
<adventure-text.version>4.17.0</adventure-text.version>
|
|
<mockito.version>5.12.0</mockito.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.retrooper.packetevents</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<optional>true</optional>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- Tests -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit.jupiter</groupId>
|
|
<artifactId>junit-jupiter</artifactId>
|
|
<version>${junit-jupiter.version}</version>
|
|
<scope>test</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>${mockito.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.github.retrooper.packetevents</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>${packetevents.version}</version>
|
|
<scope>provided</scope>
|
|
</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>
|
|
|
|
<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>jitpack.io</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>codemc-releases</id>
|
|
<url>https://repo.codemc.io/repository/maven-releases/</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>
|