2016-06-10 03:04:02 +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>EssentialsXParent</artifactId>
|
|
|
|
<groupId>net.ess3</groupId>
|
2020-08-23 18:18:31 +02:00
|
|
|
<version>2.18.1</version>
|
2016-06-10 03:04:02 +02:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2020-06-24 23:00:59 +02:00
|
|
|
<artifactId>PaperProvider</artifactId>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>paper-repo</id>
|
|
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2016-06-10 03:04:02 +02:00
|
|
|
|
|
|
|
<dependencies>
|
2020-06-24 23:00:59 +02:00
|
|
|
<dependency>
|
2016-06-10 03:04:02 +02:00
|
|
|
<groupId>net.ess3</groupId>
|
2020-06-24 23:00:59 +02:00
|
|
|
<artifactId>BaseProviders</artifactId>
|
2020-08-23 18:18:31 +02:00
|
|
|
<version>2.18.1</version>
|
2016-06-10 03:04:02 +02:00
|
|
|
</dependency>
|
2018-08-19 22:16:16 +02:00
|
|
|
<dependency>
|
2020-06-24 23:00:59 +02:00
|
|
|
<groupId>com.destroystokyo.paper</groupId>
|
|
|
|
<artifactId>paper-api</artifactId>
|
2020-10-05 15:45:33 +02:00
|
|
|
<version>1.16.3-R0.1-SNAPSHOT</version>
|
2018-08-19 22:16:16 +02:00
|
|
|
</dependency>
|
2016-06-10 03:04:02 +02:00
|
|
|
</dependencies>
|
2020-06-24 23:00:59 +02:00
|
|
|
</project>
|