2022-07-22 17:10:34 +02: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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
|
|
|
<artifactId>pandalib-parent</artifactId>
|
|
|
|
<groupId>fr.pandacube.lib</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>pandalib-paper</artifactId>
|
2022-07-20 13:18:57 +02:00
|
|
|
<packaging>jar</packaging>
|
2022-07-22 17:10:34 +02:00
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>papermc</id>
|
|
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>fabricmc</id>
|
|
|
|
<url>https://maven.fabricmc.net/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
2021-03-21 20:17:31 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>fr.pandacube.lib</groupId>
|
2022-07-22 00:17:36 +02:00
|
|
|
<artifactId>pandalib-chat</artifactId>
|
2021-03-21 20:17:31 +01:00
|
|
|
<version>${project.version}</version>
|
2021-07-09 00:27:59 +02:00
|
|
|
<exclusions>
|
2022-07-22 17:10:34 +02:00
|
|
|
<exclusion>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>adventure-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>adventure-text-serializer-plain</artifactId>
|
|
|
|
</exclusion>
|
2021-07-09 00:27:59 +02:00
|
|
|
</exclusions>
|
2021-03-21 20:17:31 +01:00
|
|
|
</dependency>
|
2022-07-22 00:17:36 +02:00
|
|
|
|
2022-07-22 17:10:34 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>fr.pandacube.lib</groupId>
|
|
|
|
<artifactId>pandalib-reflect</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>fr.pandacube.lib</groupId>
|
|
|
|
<artifactId>pandalib-util</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2022-07-22 00:17:36 +02:00
|
|
|
|
2022-12-12 17:30:59 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>fr.pandacube.lib</groupId>
|
|
|
|
<artifactId>pandalib-players</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-02-07 12:45:18 +01:00
|
|
|
<!-- Paper -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.papermc.paper</groupId>
|
2021-03-21 20:17:31 +01:00
|
|
|
<artifactId>paper-api</artifactId>
|
|
|
|
<version>${paper.version}-SNAPSHOT</version>
|
2022-02-07 12:45:18 +01:00
|
|
|
</dependency>
|
2021-07-22 00:52:26 +02:00
|
|
|
<dependency>
|
2021-07-09 00:27:59 +02:00
|
|
|
<groupId>io.papermc.paper</groupId>
|
2022-02-07 12:45:18 +01:00
|
|
|
<artifactId>paper-mojangapi</artifactId>
|
2021-07-09 00:27:59 +02:00
|
|
|
<version>${paper.version}-SNAPSHOT</version>
|
2021-07-22 00:52:26 +02:00
|
|
|
</dependency>
|
2022-12-12 18:54:00 +01:00
|
|
|
|
|
|
|
<!-- Cron expression interpreter -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.eitchnet</groupId>
|
|
|
|
<artifactId>cron</artifactId>
|
|
|
|
<version>1.6.2</version>
|
|
|
|
</dependency>
|
2022-07-22 17:10:34 +02:00
|
|
|
</dependencies>
|
|
|
|
|
2021-03-21 20:17:31 +01:00
|
|
|
</project>
|