2017-10-07 19:03:49 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-03-03 17:15:39 +01:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
2017-10-07 19:03:49 +02:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2018-03-03 17:15:39 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2017-10-07 19:03:49 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>com.jaimemartz</groupId>
|
2020-02-01 13:18:17 +01:00
|
|
|
<version>2.1.6-SNAPSHOT</version>
|
2018-03-03 17:15:39 +01:00
|
|
|
<artifactId>playerbalancer-parent</artifactId>
|
2017-10-07 19:03:49 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>playerbalancer-addon</artifactId>
|
|
|
|
|
2018-03-03 17:15:39 +01:00
|
|
|
<name>PlayerBalancerAddon</name>
|
2017-10-07 20:38:02 +02:00
|
|
|
|
2017-10-07 19:03:49 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2017-10-07 20:38:02 +02:00
|
|
|
<repository>
|
2020-02-01 13:18:17 +01:00
|
|
|
<id>extendedclip-repo</id>
|
2017-10-07 20:38:02 +02:00
|
|
|
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
|
|
</repository>
|
2017-10-07 19:03:49 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.12.2-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-10-07 20:38:02 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
<version>2.8.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-10-07 19:03:49 +02:00
|
|
|
</dependencies>
|
2018-03-03 17:15:39 +01:00
|
|
|
</project>
|