2020-09-12 02:13:40 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2020-09-24 01:32:29 +02:00
|
|
|
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.Indyuce</groupId>
|
|
|
|
<artifactId>MMOItems</artifactId>
|
2021-05-07 06:31:09 +02:00
|
|
|
<version>6.5.8</version>
|
2020-09-24 01:32:29 +02:00
|
|
|
<name>MMOItems</name>
|
2021-02-07 09:28:55 +01:00
|
|
|
<description>A great item solution for your RPG server!</description>
|
2020-09-12 02:13:40 +02:00
|
|
|
|
2020-09-24 01:32:29 +02:00
|
|
|
<properties>
|
|
|
|
<downloadSources>false</downloadSources>
|
|
|
|
<downloadJavadocs>false</downloadJavadocs>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
</properties>
|
2020-09-12 02:13:40 +02:00
|
|
|
|
2020-09-24 01:32:29 +02:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>nexus</id>
|
|
|
|
<name>Lumine Releases</name>
|
|
|
|
<url>http://mvn.lumine.io/repository/maven-releases/</url>
|
|
|
|
</repository>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>nexus</id>
|
|
|
|
<name>Lumine Snapshots</name>
|
|
|
|
<url>http://mvn.lumine.io/repository/maven-snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
</distributionManagement>
|
2020-09-12 02:13:40 +02:00
|
|
|
|
2020-09-24 01:32:29 +02:00
|
|
|
<build>
|
2020-12-06 20:23:50 +01:00
|
|
|
<finalName>${project.name}-${project.version}</finalName>
|
2020-09-24 01:32:29 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>${basedir}/src/main/resources/</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
2021-02-03 21:18:34 +01:00
|
|
|
<repository>
|
|
|
|
<id>lumine-repo</id>
|
|
|
|
<url>https://mvn.lumine.io/repository/maven-public/</url>
|
|
|
|
</repository>
|
2020-09-24 01:32:29 +02:00
|
|
|
<repository>
|
|
|
|
<id>mojang</id>
|
|
|
|
<url>https://libraries.minecraft.net/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>sk89q-repo</id>
|
|
|
|
<url>https://maven.enginehub.org/repo/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>inventive-repo</id>
|
|
|
|
<url>https://repo.inventivetalent.org/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>placeholderapi</id>
|
|
|
|
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
|
|
</repository>
|
2021-03-30 09:50:11 +02:00
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
2020-09-24 01:32:29 +02:00
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<!-- Minecraft -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.mojang</groupId>
|
|
|
|
<artifactId>authlib</artifactId>
|
|
|
|
<version>1.5.21</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2020-11-30 21:00:09 +01:00
|
|
|
<version>amalgam</version>
|
2020-09-24 01:32:29 +02:00
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/spigot.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
|
2020-12-06 17:47:13 +01:00
|
|
|
<!-- MMOs -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.Indyuce</groupId>
|
|
|
|
<artifactId>MMOCore</artifactId>
|
2021-03-30 22:55:32 +02:00
|
|
|
<version>1.7.1</version>
|
2021-02-03 21:18:34 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.lumine</groupId>
|
|
|
|
<artifactId>MythicLib</artifactId>
|
2021-05-18 09:42:06 +02:00
|
|
|
<version>1.0.19</version>
|
2021-02-12 17:37:38 +01:00
|
|
|
<scope>provided</scope>
|
2020-12-06 17:47:13 +01:00
|
|
|
</dependency>
|
2021-02-11 21:53:39 +01:00
|
|
|
|
|
|
|
<!-- USING THIS FOR INTERNAL TESTING -->
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>io.lumine</groupId>-->
|
|
|
|
<!-- <artifactId>MythicLib</artifactId>-->
|
2021-02-12 00:15:24 +01:00
|
|
|
<!-- <version>1.0. 0</version>-->
|
2021-02-11 21:53:39 +01:00
|
|
|
<!-- <scope>system</scope>-->
|
|
|
|
<!-- <systemPath>${basedir}/lib/MythicLib.jar</systemPath>-->
|
|
|
|
<!-- </dependency>-->
|
2021-02-12 00:14:30 +01:00
|
|
|
|
2021-02-03 21:18:34 +01:00
|
|
|
<!--
|
2020-12-06 17:47:13 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.Indyuce</groupId>
|
|
|
|
<artifactId>MMOLib</artifactId>
|
2020-12-15 20:40:33 +01:00
|
|
|
<version>1.7.3</version>
|
2020-12-06 17:49:41 +01:00
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/MMOLib.jar</systemPath>
|
2020-12-06 17:47:13 +01:00
|
|
|
</dependency>
|
2021-02-03 21:18:34 +01:00
|
|
|
-->
|
2020-12-06 17:47:13 +01:00
|
|
|
|
2020-09-24 01:32:29 +02:00
|
|
|
<!-- APIs -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
<version>19.0.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.8.5</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/GoogleGSON.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.klyser8.iridescent</groupId>
|
|
|
|
<artifactId>Iridescent</artifactId>
|
|
|
|
<version>1.2.1</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/Iridescent.jar</systemPath>
|
|
|
|
</dependency>
|
2021-03-30 09:50:11 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.RednedEpic</groupId>
|
|
|
|
<artifactId>PhatLoots</artifactId>
|
|
|
|
<version>master-dev-build-79-g4ab7dd1-97</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-09-24 01:32:29 +02:00
|
|
|
|
|
|
|
<!-- Other Plugins -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.Eniripsa96</groupId>
|
|
|
|
<artifactId>SkillAPI</artifactId>
|
|
|
|
<version>master-SNAPSHOT</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/SkillAPI.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>n3kas</groupId>
|
|
|
|
<artifactId>ae.api</artifactId>
|
|
|
|
<version>5.7.6</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/AE-API.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.black_ixx</groupId>
|
|
|
|
<artifactId>BossShop</artifactId>
|
|
|
|
<version>2.0.9</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/BossShopPro.jar</systemPath>
|
|
|
|
</dependency>
|
2021-04-04 09:23:59 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.lumine</groupId>
|
|
|
|
<artifactId>MythicEnchants</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2020-09-24 01:32:29 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.bekvon.bukkit</groupId>
|
|
|
|
<artifactId>Residence</artifactId>
|
|
|
|
<version>4.8.7.2</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/Residence.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.Zrips</groupId>
|
|
|
|
<artifactId>CMI</artifactId>
|
|
|
|
<version>8.6.5.0</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/CMI.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.herocraftonline</groupId>
|
|
|
|
<artifactId>heroes</artifactId>
|
|
|
|
<version>1.9.3</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/Heroes.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.gmail.nossr50</groupId>
|
|
|
|
<artifactId>mcMMO</artifactId>
|
|
|
|
<version>2.1.104</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/mcMMO.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>us.eunoians</groupId>
|
|
|
|
<artifactId>McRPG</artifactId>
|
|
|
|
<version>1.1.2</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/McRPG.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.baks</groupId>
|
|
|
|
<artifactId>rpl</artifactId>
|
|
|
|
<version>3.9.30</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/RPGPlayerLeveling.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.leothepro555</groupId>
|
|
|
|
<artifactId>skills</artifactId>
|
|
|
|
<version>12.3.5</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/Skills.jar</systemPath>
|
|
|
|
</dependency>
|
2020-12-14 20:11:05 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.skills.main</groupId>
|
|
|
|
<artifactId>SkillsPro</artifactId>
|
|
|
|
<version>18.9.0.1</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/SkillsPro.jar</systemPath>
|
|
|
|
</dependency>
|
2020-09-24 01:32:29 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.robin</groupId>
|
|
|
|
<artifactId>BattleLevels</artifactId>
|
|
|
|
<version>6.9.1</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/BattleLevels.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.evill4mer</groupId>
|
|
|
|
<artifactId>RealDualWield</artifactId>
|
|
|
|
<version>1.1.12</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/RealDualWield.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.arasple.mc</groupId>
|
|
|
|
<artifactId>TrHologram</artifactId>
|
|
|
|
<version>1.11</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/TrHologram.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.gmail.filoghost</groupId>
|
|
|
|
<artifactId>HolographicDisplays</artifactId>
|
|
|
|
<version>6.9.1</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/HolographicDisplays.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.lumine.xikage</groupId>
|
|
|
|
<artifactId>MythicMobs</artifactId>
|
|
|
|
<version>4.8.0</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/MythicMobs.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.tobiyas</groupId>
|
|
|
|
<artifactId>RacesAndClasses</artifactId>
|
|
|
|
<version>1.2.6</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/RacesAndClasses.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ru.endlesscode</groupId>
|
|
|
|
<artifactId>rpginventory</artifactId>
|
|
|
|
<version>2.3.0</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/RPGInventory.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sainttx.holograms</groupId>
|
|
|
|
<artifactId>holograms</artifactId>
|
|
|
|
<version>2.9.1</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/Holograms.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl</groupId>
|
|
|
|
<artifactId>vault</artifactId>
|
|
|
|
<version>1.7.2</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/Vault.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldguard</groupId>
|
|
|
|
<artifactId>worldguard-bukkit</artifactId>
|
|
|
|
<version>7.0.1-SNAPSHOT</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/WorldGuard.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-bukkit</artifactId>
|
|
|
|
<version>7.2.0</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/WorldEdit.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.citizensnpcs</groupId>
|
|
|
|
<artifactId>citizens</artifactId>
|
|
|
|
<version>2.0.25-SNAPSHOT</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/Citizens.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.inventivetalent</groupId>
|
|
|
|
<artifactId>glowapi</artifactId>
|
|
|
|
<version>1.4.8-SNAPSHOT</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/GlowAPI.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
<version>2.10.7</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/lib/PlaceholderAPI.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2020-09-12 02:13:40 +02:00
|
|
|
</project>
|