mirror of
https://gitlab.com/phoenix-dvpmt/mmocore.git
synced 2024-11-23 00:05:52 +01:00
292 lines
9.2 KiB
XML
292 lines
9.2 KiB
XML
<?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>
|
|
<version>1.12.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>MMOCore-API</artifactId>
|
|
|
|
<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>
|
|
<version>3.3.0</version>
|
|
<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>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
<id>placeholderapi</id>
|
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>lumine</id>
|
|
<url>https://mvn.lumine.io/repository/maven/</url>
|
|
</repository>
|
|
|
|
<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>
|
|
</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>
|
|
<optional>true</optional>
|
|
</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>
|
|
<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>
|
|
<version>1.7.1</version>
|
|
<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>
|
|
<version>2.0.30</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Party plugins -->
|
|
<dependency>
|
|
<groupId>de.simonsator</groupId>
|
|
<artifactId>DevelopmentPAFSpigot</artifactId>
|
|
<version>1.0.65</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>de.simonsator</groupId>
|
|
<artifactId>Party-and-Friends-MySQL-Edition-Spigot-API</artifactId>
|
|
<version>1.5.4-RELEASE</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>de.simonsator</groupId>
|
|
<artifactId>spigot-party-api-for-party-and-friends</artifactId>
|
|
<version>1.0.4-RELEASE</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<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>
|
|
<version>0.18-SNAPSHOT-1149</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>de.erethon</groupId>
|
|
<artifactId>Bedrock</artifactId>
|
|
<version>1.2.5</version>
|
|
<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>
|
|
<groupId>cc.javajobs</groupId>
|
|
<artifactId>FactionsBridge</artifactId>
|
|
<version>1.3.6</version>
|
|
<scope>provided</scope>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>me.ulrich</groupId>
|
|
<artifactId>UltimateClans</artifactId>
|
|
<version>6.0.2</version>
|
|
<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>
|
|
<version>1.15.5</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |