mmocore/MMOCore-API/pom.xml

319 lines
10 KiB
XML
Raw Normal View History

2022-08-16 10:10:58 +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>MMOCore</artifactId>
<groupId>net.Indyuce</groupId>
2023-07-09 18:26:43 +02:00
<version>1.12.1-SNAPSHOT</version>
2022-08-16 10:10:58 +02:00
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>MMOCore-API</artifactId>
2022-08-16 11:22:10 +02:00
<build>
<finalName>${project.name}-${project.version}</finalName>
<sourceDirectory>src/main/java</sourceDirectory>
<defaultGoal>clean package install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2022-08-16 11:23:47 +02:00
<version>3.3.0</version>
2022-08-16 11:22:10 +02:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<relocations>
<relocation>
<pattern>io.papermc.lib</pattern>
<shadedPattern>net.Indyuce.mmocore.paperlib</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</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>
2022-08-16 10:10:58 +02:00
2022-08-16 11:22:10 +02:00
<repositories>
2022-08-16 10:10:58 +02:00
<repository>
<id>placeholderapi</id>
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>
2022-12-30 14:22:30 +01:00
<repository>
<id>lumine</id>
<url>https://mvn.lumine.io/repository/maven/</url>
</repository>
2024-02-11 17:17:35 +01:00
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
2022-08-16 10:10:58 +02:00
<repository>
<id>sk89q-repo</id>
<url>https://maven.enginehub.org/repo/</url>
</repository>
<repository>
<id>papermc</id>
<url>https://papermc.io/repo/repository/maven-public/</url>
</repository>
<repository>
<id>dmulloy2-repo</id>
<url>https://repo.dmulloy2.net/repository/public/</url>
</repository>
<!-- Party and Friends Repository -->
<repository>
<id>simonsators Repo</id>
<url>https://simonsator.de/repo</url>
</repository>
2022-08-16 10:10:58 +02:00
</repositories>
<dependencies>
<!-- Spigot API -->
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-1.17.1</artifactId>
<version>dev</version>
<scope>provided</scope>
</dependency>
<!-- Extra libs -->
<dependency>
<groupId>io.papermc</groupId>
<artifactId>paperlib</artifactId>
<version>1.0.5</version>
2022-08-16 11:22:10 +02:00
<optional>true</optional>
2022-08-16 10:10:58 +02:00
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
<scope>provided</scope>
</dependency>
<!-- Plugin dependencies -->
<dependency>
<groupId>io.lumine</groupId>
<artifactId>Mythic-Dist</artifactId>
<version>5.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
2023-05-07 18:29:31 +02:00
<groupId>fr.phoenixdevt</groupId>
2023-05-14 16:34:43 +02:00
<artifactId>Profile-API</artifactId>
2024-04-07 09:01:39 +02:00
<version>1.1-SNAPSHOT</version>
2023-05-07 18:29:31 +02:00
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
2022-08-16 10:10:58 +02:00
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.9.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
2022-12-22 23:48:15 +01:00
<version>1.7.1</version>
2022-08-16 10:10:58 +02:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sk89q.worldguard</groupId>
<artifactId>worldguard-bukkit</artifactId>
<version>7.0.2-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.comphenix.protocol</groupId>
<artifactId>ProtocolLib</artifactId>
<version>4.8.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.citizensnpcs</groupId>
<artifactId>Citizens</artifactId>
2022-11-14 10:57:55 +01:00
<version>2.0.30</version>
2022-08-16 10:10:58 +02:00
<scope>provided</scope>
</dependency>
<!-- Party plugins -->
<dependency>
<groupId>de.simonsator</groupId>
2022-08-29 13:14:19 +02:00
<artifactId>DevelopmentPAFSpigot</artifactId>
2022-08-16 10:10:58 +02:00
<version>1.0.65</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.simonsator</groupId>
2022-08-29 13:14:19 +02:00
<artifactId>Party-and-Friends-MySQL-Edition-Spigot-API</artifactId>
<version>1.5.4-RELEASE</version>
2022-08-16 10:10:58 +02:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.simonsator</groupId>
2022-08-29 13:14:19 +02:00
<artifactId>spigot-party-api-for-party-and-friends</artifactId>
<version>1.0.4-RELEASE</version>
<scope>provided</scope>
</dependency>
2023-04-22 15:59:54 +02:00
<dependency>
<groupId>com.civious</groupId>
<artifactId>OBTeam</artifactId>
<version>1.1</version>
<scope>provided</scope>
</dependency>
2023-04-22 16:54:55 +02:00
<dependency>
<groupId>net.playavalon</groupId>
<artifactId>DungeonParties</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
2022-08-16 10:10:58 +02:00
<dependency>
<groupId>com.alessiodp</groupId>
<artifactId>Parties</artifactId>
<version>3.1.14</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.gmail.nossr50</groupId>
<artifactId>mcMMO</artifactId>
<version>2.1.209</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.erethon</groupId>
<artifactId>DungeonsXL</artifactId>
2023-02-28 18:05:24 +01:00
<version>0.18-SNAPSHOT-1149</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>de.erethon</groupId>
<artifactId>Bedrock</artifactId>
<version>1.2.5</version>
2022-08-16 10:10:58 +02:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.denizen</groupId>
<artifactId>Dungeons</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
<!-- Quest Plugins -->
<dependency>
<groupId>me.blackvein</groupId>
<artifactId>Quests</artifactId>
<version>4.4.1-b340</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>fr.skytasul.quests</groupId>
<artifactId>BeautyQuests</artifactId>
<version>0.19.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.guillaumevdn</groupId>
<artifactId>QuestCreator</artifactId>
<version>6.39.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.guillaumevdn</groupId>
<artifactId>GCore</artifactId>
<version>8.39.0</version>
<scope>provided</scope>
</dependency>
<!-- Guild plugins -->
<dependency>
2022-12-30 18:35:12 +01:00
<groupId>cc.javajobs</groupId>
<artifactId>FactionsBridge</artifactId>
<version>1.3.6</version>
2022-08-16 10:10:58 +02:00
<scope>provided</scope>
2022-12-30 18:35:12 +01:00
<optional>true</optional>
2022-08-16 10:10:58 +02:00
</dependency>
<dependency>
2024-02-11 17:17:35 +01:00
<groupId>com.github.UlrichBR</groupId>
<artifactId>UClansV7-API</artifactId>
<version>7.1.0</version>
2022-08-16 10:10:58 +02:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>me.glaremasters</groupId>
<artifactId>Guilds</artifactId>
<version>3.5.6.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.kingdoms.main</groupId>
<artifactId>Kingdoms</artifactId>
2023-02-23 00:07:02 +01:00
<version>1.15.5</version>
2022-08-16 10:10:58 +02:00
<scope>provided</scope>
</dependency>
</dependencies>
</project>