2017-05-30 21:36:39 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>net.aminecraftdev.custombosses</groupId>
|
|
|
|
<artifactId>CustomBosses</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2018-03-08 16:37:06 +01:00
|
|
|
<version>3.0.0.0</version>
|
|
|
|
|
2017-05-30 21:36:39 +02:00
|
|
|
<modules>
|
|
|
|
<module>api-modules/FactionsM</module>
|
|
|
|
<module>api-modules/FactionsOne</module>
|
|
|
|
<module>api-modules/FactionsUUID</module>
|
|
|
|
<module>api-modules/PluginAPI</module>
|
2018-03-08 16:37:06 +01:00
|
|
|
<module>api-modules/LegacyFactions</module>
|
2017-05-30 21:36:39 +02:00
|
|
|
<module>plugin-modules/Core</module>
|
2018-03-08 16:37:06 +01:00
|
|
|
<module>plugin-modules/FactionHelper</module>
|
2017-05-30 21:36:39 +02:00
|
|
|
</modules>
|
|
|
|
|
2018-03-08 16:37:06 +01:00
|
|
|
<properties>
|
2018-04-14 20:14:13 +02:00
|
|
|
<plugin.version>3.0.0-SNAPSHOT-U5</plugin.version>
|
2018-04-14 18:24:58 +02:00
|
|
|
<plugin.name>CustomBosses</plugin.name>
|
|
|
|
<plugin.main>net.aminecraftdev.custombosses.CustomBosses</plugin.main>
|
|
|
|
<plugin.author>AMinecraftDev</plugin.author>
|
2018-03-08 16:37:06 +01:00
|
|
|
</properties>
|
|
|
|
|
2017-05-30 21:36:39 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
|
|
|
<version>1.11.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldguard</artifactId>
|
|
|
|
<version>6.0.0-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldedit</artifactId>
|
|
|
|
<version>6.0.0-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2018-03-08 16:37:06 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2017-05-30 21:36:39 +02:00
|
|
|
</project>
|