2022-07-20 16:26:29 +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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
|
|
|
<artifactId>pandalib-parent</artifactId>
|
|
|
|
<groupId>fr.pandacube.lib</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2022-07-22 17:10:34 +02:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2022-07-20 16:26:29 +02:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>pandalib-paper-reflect</artifactId>
|
2022-07-22 17:10:34 +02:00
|
|
|
<packaging>jar</packaging>
|
2022-07-20 16:26:29 +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>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>fr.pandacube.lib</groupId>
|
|
|
|
<artifactId>pandalib-util</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>fr.pandacube.lib</groupId>
|
|
|
|
<artifactId>pandalib-reflect</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-12-13 13:44:07 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>fr.pandacube.lib</groupId>
|
|
|
|
<artifactId>pandalib-paper</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-07-20 16:26:29 +02:00
|
|
|
<!-- Paper -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.papermc.paper</groupId>
|
|
|
|
<artifactId>paper-api</artifactId>
|
|
|
|
<version>${paper.version}-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.papermc.paper</groupId>
|
|
|
|
<artifactId>paper-mojangapi</artifactId>
|
|
|
|
<version>${paper.version}-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Needed to read obfuscation mapping file. Already included in Paper -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.fabricmc</groupId>
|
|
|
|
<artifactId>mapping-io</artifactId>
|
|
|
|
<version>0.3.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2022-09-08 23:42:12 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludePackageNames>fr.pandacube.lib.paper.reflect.wrapper.*</excludePackageNames>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2022-07-20 16:26:29 +02:00
|
|
|
</project>
|