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>
|
2021-06-12 14:06:54 +02:00
|
|
|
|
2020-09-24 01:32:29 +02:00
|
|
|
<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>
|
2021-06-12 14:06:54 +02:00
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
2020-09-24 01:32:29 +02:00
|
|
|
<repository>
|
|
|
|
<id>placeholderapi</id>
|
|
|
|
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
|
|
</repository>
|
2021-06-12 15:15:34 +02:00
|
|
|
|
2021-06-12 14:06:54 +02:00
|
|
|
<!-- Repository used to fetch all Spigot builds -->
|
2021-03-30 09:50:11 +02:00
|
|
|
<repository>
|
2021-06-12 14:06:54 +02:00
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2021-06-12 15:15:34 +02:00
|
|
|
|
2021-06-12 14:06:54 +02:00
|
|
|
<!-- Local reposity used to save external libraries with no repos -->
|
|
|
|
<repository>
|
|
|
|
<id>local-repo</id>
|
2021-06-12 15:15:34 +02:00
|
|
|
<url>file:${project.basedir}/local-repo</url>
|
2021-03-30 09:50:11 +02:00
|
|
|
</repository>
|
2021-06-12 15:15:34 +02:00
|
|
|
|
2020-09-24 01:32:29 +02:00
|
|
|
</repositories>
|
2021-06-12 14:06:54 +02:00
|
|
|
|
2021-06-12 17:40:39 +02:00
|
|
|
<!-- Order of dependencies matters in Maven because the first wins when
|
|
|
|
multiple classes match. -->
|
|
|
|
|
2020-09-24 01:32:29 +02:00
|
|
|
<dependencies>
|
2021-06-12 14:06:54 +02:00
|
|
|
|
2021-06-12 17:40:39 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.Indyuce.mmoitems.lib</groupId>
|
|
|
|
<artifactId>GoogleGSON</artifactId>
|
|
|
|
<version>2.8.5</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-09-24 01:32:29 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.mojang</groupId>
|
|
|
|
<artifactId>authlib</artifactId>
|
|
|
|
<version>1.5.21</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-12-06 17:47:13 +01:00
|
|
|
<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>
|
2021-06-12 14:06:54 +02:00
|
|
|
|
2021-02-03 21:18:34 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.lumine</groupId>
|
|
|
|
<artifactId>MythicLib</artifactId>
|
2021-06-13 02:11:14 +02:00
|
|
|
<version>1.1.0</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
|
|
|
|
2020-12-06 17:47:13 +01:00
|
|
|
<dependency>
|
2021-06-12 14:06:54 +02:00
|
|
|
<groupId>io.lumine</groupId>
|
|
|
|
<artifactId>MythicEnchants</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
2020-12-06 17:47:13 +01:00
|
|
|
</dependency>
|
|
|
|
|
2020-09-24 01:32:29 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
<version>19.0.0</version>
|
|
|
|
</dependency>
|
2021-06-12 14:06:54 +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
|
|
|
<dependency>
|
2021-06-12 17:40:39 +02:00
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
<version>2.9.2</version>
|
2021-06-12 14:06:54 +02:00
|
|
|
<scope>provided</scope>
|
2020-09-24 01:32:29 +02:00
|
|
|
</dependency>
|
2021-06-12 14:06:54 +02:00
|
|
|
|
2020-09-24 01:32:29 +02:00
|
|
|
<dependency>
|
2021-06-12 14:06:54 +02:00
|
|
|
<groupId>io.lumine.xikage</groupId>
|
|
|
|
<artifactId>MythicMobs</artifactId>
|
|
|
|
<version>4.11.0-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
2020-09-24 01:32:29 +02:00
|
|
|
</dependency>
|
2021-06-12 14:06:54 +02:00
|
|
|
|
2021-06-12 15:15:34 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.lumine</groupId>
|
|
|
|
<artifactId>LumineUtils</artifactId>
|
|
|
|
<version>1.16.1-20210326.031037-28</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2021-03-30 09:50:11 +02:00
|
|
|
<dependency>
|
2021-06-12 14:06:54 +02:00
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.17-R0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
2020-09-24 01:32:29 +02:00
|
|
|
</dependencies>
|
2020-09-12 02:13:40 +02:00
|
|
|
</project>
|