mmoitems/MMOItems-API/pom.xml

348 lines
12 KiB
XML
Raw Permalink Normal View History

2022-08-16 12:39:43 +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>MMOItems</artifactId>
<groupId>net.Indyuce</groupId>
2023-04-15 14:35:41 +02:00
<version>6.9.4-SNAPSHOT</version>
2022-08-16 12:39:43 +02:00
</parent>
<packaging>jar</packaging>
<modelVersion>4.0.0</modelVersion>
<artifactId>MMOItems-API</artifactId>
<properties>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
</properties>
<build>
<finalName>${project.name}-${project.version}</finalName>
<defaultGoal>clean package install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
2022-12-22 23:06:38 +01:00
<source>1.8</source>
<target>1.8</target>
2022-08-16 12:39:43 +02:00
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<!--
This flattens the pom.xml from the API module as well so that it can be uploaded
to Nexus. For plugins which have no API/Bukkit differenciation like MythicLib we
can just use the main plugin pom.xml file.
-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.2.2</version>
<configuration>
<updatePomFile>true</updatePomFile>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>package</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<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>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>
<!-- Repository used to fetch all Spigot builds -->
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<!-- AdvancedEnchants -->
<repository>
<id>egg82-ninja</id>
<url>https://www.myget.org/F/egg82-java/maven/</url>
</repository>
<!-- HolographicDisplays -->
<repository>
<id>codemc-repo</id>
<url>https://repo.codemc.io/repository/maven-public/</url>
</repository>
</repositories>
<!--
Order of dependencies matters in Maven because
the first wins when multiple classpaths match
-->
<dependencies>
<!-- Spigot API -->
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.18-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-clean-plugin -->
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- AuthLib -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>com.mojang</groupId>
<artifactId>authlib</artifactId>
<version>1.5.21</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- MMOCore Api -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>net.Indyuce</groupId>
<artifactId>MMOCore-API</artifactId>
2023-02-01 21:28:38 +01:00
<version>1.11.2-SNAPSHOT</version>
2022-08-16 12:39:43 +02:00
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- MythicEnchants -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>io.lumine</groupId>
<artifactId>MythicEnchants</artifactId>
<version>0.0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- PhatLoots -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>com.github.RednedEpic</groupId>
<artifactId>PhatLoots</artifactId>
<version>4.2.3</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- placeholderapi -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.9.2</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- Mythic -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>io.lumine</groupId>
<artifactId>Mythic-Dist</artifactId>
<version>5.1.2-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- WordGuard -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>com.sk89q.worldguard</groupId>
<artifactId>worldguard-bukkit</artifactId>
<version>7.0.2-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- Vault -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- SkillAPI -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>com.github.Eniripsa96</groupId>
<artifactId>SkillAPI</artifactId>
<version>master</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- AE Api -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>n3kas</groupId>
<artifactId>ae.api</artifactId>
<version>5.7.6</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- BossShop -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>org.black_ixx</groupId>
<artifactId>BossShop</artifactId>
<version>2.0.9</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- Residence -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>com.bekvon.bukkit.residence</groupId>
<artifactId>Residence</artifactId>
<version>4.8.7.2</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- Heroes -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>com.herocraftonline</groupId>
<artifactId>Heroes</artifactId>
<version>1.9.22</version>
<scope>provided</scope>
</dependency>
<!-- ProtocolLib -->
<dependency>
<groupId>com.comphenix.protocol</groupId>
<artifactId>ProtocolLib</artifactId>
<version>4.7.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- mcMMO -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>com.gmail.nossr50</groupId>
<artifactId>mcMMO</artifactId>
<version>2.1.104</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- McRPG -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>us.eunoians</groupId>
<artifactId>McRPG</artifactId>
<version>1.1.2</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- Rpl -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>me.baks</groupId>
<artifactId>rpl</artifactId>
<version>3.9.30</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- Skills -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>me.leothepro555</groupId>
<artifactId>skills</artifactId>
<version>12.3.5</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- SkillsPro -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>org.skills.main</groupId>
<artifactId>SkillsPro</artifactId>
<version>18.9.0.1</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- BattleLevels -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>me.robin</groupId>
<artifactId>BattleLevels</artifactId>
<version>6.9.1</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- TrHologram -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>me.arasple.mc</groupId>
<artifactId>TrHologram</artifactId>
<version>1.11</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- HolographicDisplays API -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>com.gmail.filoghost.holographicdisplays</groupId>
<artifactId>holographicdisplays-api</artifactId>
<version>2.4.0</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- RacesAndClasses -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>de.tobiyas</groupId>
<artifactId>RacesAndClasses</artifactId>
<version>1.2.6</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- Rpg Inventory -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>ru.endlesscode</groupId>
<artifactId>rpginventory</artifactId>
<version>2.3.0</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- Holograms -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>com.sainttx.holograms</groupId>
<artifactId>Holograms</artifactId>
<version>2.9.1</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- Aurelium Skills -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>com.archyx</groupId>
<artifactId>AureliumSkills</artifactId>
<version>1.2.8</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- Crazy Enchantments -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>me.badbones69</groupId>
<artifactId>crazyenchantments</artifactId>
<version>1.8-db9</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- Citizens -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>net.citizensnpcs</groupId>
<artifactId>Citizens</artifactId>
2022-11-14 10:56:11 +01:00
<version>2.0.30</version>
2022-08-16 12:39:43 +02:00
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- Denizen -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>com.denizenscript</groupId>
<artifactId>denizen</artifactId>
<version>1.2.1-b1744-REL</version>
<scope>provided</scope>
</dependency>
2022-10-21 13:53:23 +02:00
<!-- Denizen -->
2022-08-16 12:39:43 +02:00
<dependency>
<groupId>com.denizenscript</groupId>
<artifactId>depenizen</artifactId>
<version>2.0.0-b709</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>