PandaLib/Paper/pom.xml

55 lines
1.8 KiB
XML
Raw Normal View History

2021-03-21 20:17:31 +01:00
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>fr.pandacube.lib</groupId>
<artifactId>pandalib-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>pandalib-paper</artifactId>
<name>PandaLib-Paper</name>
<repositories>
<repository>
<id>papermc</id>
<url>https://papermc.io/repo/repository/maven-public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>fr.pandacube.lib</groupId>
<artifactId>pandalib-core</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>net.kyori</groupId>
<artifactId>adventure-api</artifactId>
</exclusion>
<exclusion>
<groupId>net.kyori</groupId>
<artifactId>adventure-text-serializer-plain</artifactId>
</exclusion>
</exclusions>
2021-03-21 20:17:31 +01:00
</dependency>
<!-- Paper (1.16 and before) -->
2021-07-22 00:52:26 +02:00
<!-- <dependency>
2021-03-21 20:17:31 +01:00
<groupId>com.destroystokyo.paper</groupId>
<artifactId>paper-api</artifactId>
<version>${paper.version}-SNAPSHOT</version>
<scope>compile</scope>
2021-07-22 00:52:26 +02:00
</dependency> -->
<!-- Paper (1.17+) -->
2021-07-22 00:52:26 +02:00
<dependency>
<groupId>io.papermc.paper</groupId>
<artifactId>paper-api</artifactId>
<version>${paper.version}-SNAPSHOT</version>
<scope>compile</scope>
2021-07-22 00:52:26 +02:00
</dependency>
2021-03-21 20:17:31 +01:00
</dependencies>
</project>