93 lines
3.0 KiB
XML
93 lines
3.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">
|
||
|
<parent>
|
||
|
<artifactId>pandalib-parent</artifactId>
|
||
|
<groupId>fr.pandacube.lib</groupId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>pandalib-paper-permissions</artifactId>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>papermc</id>
|
||
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
||
|
</repository>
|
||
|
|
||
|
<!-- WorldEdit -->
|
||
|
<repository>
|
||
|
<id>sk89q-repo</id>
|
||
|
<url>https://maven.enginehub.org/repo/</url>
|
||
|
</repository>
|
||
|
|
||
|
<!-- Vault and maybe other dependecies -->
|
||
|
<repository>
|
||
|
<id>jitpack.io</id>
|
||
|
<url>https://jitpack.io</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>fr.pandacube.lib</groupId>
|
||
|
<artifactId>pandalib-players-permissible</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>fr.pandacube.lib</groupId>
|
||
|
<artifactId>pandalib-permissions</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>fr.pandacube.lib</groupId>
|
||
|
<artifactId>pandalib-reflect</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Paper -->
|
||
|
<dependency>
|
||
|
<groupId>io.papermc.paper</groupId>
|
||
|
<artifactId>paper-api</artifactId>
|
||
|
<version>${paper.version}-SNAPSHOT</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Vault -->
|
||
|
<dependency>
|
||
|
<groupId>com.github.MilkBowl</groupId>
|
||
|
<artifactId>VaultAPI</artifactId>
|
||
|
<version>1.7.1</version>
|
||
|
<scope>provided</scope>
|
||
|
<optional>true</optional>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.bukkit</groupId>
|
||
|
<artifactId>bukkit</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- WorldEdit -->
|
||
|
<dependency>
|
||
|
<groupId>com.sk89q.worldedit</groupId>
|
||
|
<artifactId>worldedit-bukkit</artifactId>
|
||
|
<version>7.2.9</version>
|
||
|
<scope>provided</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.bukkit</groupId>
|
||
|
<artifactId>bukkit</artifactId>
|
||
|
</exclusion>
|
||
|
<exclusion>
|
||
|
<groupId>org.sk89q.bukkit</groupId>
|
||
|
<artifactId>bukkit-classloader-check</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|