mmocore/pom.xml

251 lines
5.9 KiB
XML
Raw Normal View History

<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">
<modelVersion>4.0.0</modelVersion>
<groupId>net.Indyuce</groupId>
<artifactId>MMOCore</artifactId>
2022-03-05 10:05:47 +01:00
<version>1.9.2</version>
<name>MMOCore</name>
2021-06-14 03:28:51 +02:00
<description>Offer your players a brand new RPG experience!!</description>
<properties>
<downloadSources>false</downloadSources>
<downloadJavadocs>false</downloadJavadocs>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<distributionManagement>
<repository>
2021-06-27 04:50:07 +02:00
<id>nexus</id>
2021-06-27 04:53:23 +02:00
<name>Lumine Releases</name>
<url>https://mvn.lumine.io/repository/maven-releases/</url>
</repository>
2021-06-27 04:53:23 +02:00
<snapshotRepository>
<id>nexus</id>
<name>Lumine Snapshots</name>
<url>https://mvn.lumine.io/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build>
<finalName>${project.name}-${project.version}</finalName>
<resources>
<resource>
<filtering>true</filtering>
<directory>${basedir}/src/main/resources/</directory>
</resource>
</resources>
2021-06-19 23:52:22 +02:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
2022-01-22 14:34:48 +01:00
<source>9</source>
<target>9</target>
<encoding>UTF-8</encoding>
2022-01-21 23:38:19 +01:00
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</plugin>
2021-06-19 23:52:22 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<configuration>
2021-06-19 23:52:22 +02:00
<minimizeJar>false</minimizeJar>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
2021-06-19 23:52:22 +02:00
</plugins>
</build>
<repositories>
2021-12-21 19:34:51 +01:00
<repository>
<id>lumine</id>
<url>https://mvn.lumine.io/repository/maven/</url>
</repository>
<repository>
<id>placeholderapi</id>
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2022-01-22 11:34:04 +01:00
<repository>
<id>sk89q-repo</id>
<url>https://maven.enginehub.org/repo/</url>
</repository>
2022-01-22 11:34:04 +01:00
<repository>
<id>papermc</id>
<url>https://papermc.io/repo/repository/maven-public/</url>
</repository>
2022-01-22 11:34:04 +01:00
</repositories>
<dependencies>
<!-- Spigot API -->
<dependency>
<groupId>org.spigotmc</groupId>
2021-11-07 02:07:06 +01:00
<artifactId>spigot-1.17.1</artifactId>
2021-08-12 22:12:43 +02:00
<version>dev</version>
<scope>provided</scope>
</dependency>
2022-01-21 23:14:34 +01:00
<!-- Extra libs -->
<dependency>
2022-01-21 23:14:34 +01:00
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>19.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
2022-01-21 23:14:34 +01:00
<groupId>io.papermc</groupId>
<artifactId>paperlib</artifactId>
<version>1.0.5</version>
</dependency>
<dependency>
2022-01-21 23:14:34 +01:00
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
<scope>provided</scope>
</dependency>
2022-01-21 23:14:34 +01:00
<!-- Plugin dependencies -->
<dependency>
2022-01-21 23:14:34 +01:00
<groupId>io.lumine</groupId>
<artifactId>MythicLib-dist</artifactId>
2022-03-06 17:50:50 +01:00
<version>1.3.1</version>
2022-01-21 23:14:34 +01:00
<scope>provided</scope>
</dependency>
<dependency>
2021-08-18 03:50:49 +02:00
<groupId>io.lumine</groupId>
2022-03-12 13:56:44 +01:00
<artifactId>Mythic-Dist</artifactId>
<version>5.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
2022-01-21 23:14:34 +01: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>
<version>1.7</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>net.citizensnpcs</groupId>
<artifactId>Citizens</artifactId>
2021-08-18 04:42:35 +02:00
<version>2.0.25</version>
2021-08-18 04:28:00 +02:00
<scope>provided</scope>
</dependency>
2022-01-21 23:14:34 +01:00
<!-- Party plugins -->
<dependency>
<groupId>de.simonsator</groupId>
<artifactId>PartyAndFriends</artifactId>
<version>1.0.65</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-PRE-02</version>
<scope>provided</scope>
</dependency>
2022-02-06 17:40:32 +01:00
<dependency>
<groupId>org.denizen</groupId>
<artifactId>Dungeons</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
2022-01-21 23:14:34 +01:00
<!-- Guild plugins -->
<dependency>
<groupId>com.massivecraft</groupId>
<artifactId>Factions</artifactId>
<version>1.6.9.5-2.9.8-RC</version>
<scope>provided</scope>
</dependency>
2022-01-22 11:34:04 +01:00
<dependency>
<groupId>me.ulrich</groupId>
<artifactId>UltimateClans</artifactId>
<version>4.2.0</version>
<scope>provided</scope>
</dependency>
2022-01-22 19:18:54 +01:00
<dependency>
<groupId>me.glaremasters</groupId>
<artifactId>Guilds</artifactId>
<version>3.5.6.0</version>
<scope>provided</scope>
</dependency>
2022-02-06 17:40:32 +01:00
<dependency>
<groupId>org.kingdoms.main</groupId>
<artifactId>Kingdoms</artifactId>
<version>1.11.15.0.0.0.1.1</version>
<scope>provided</scope>
</dependency>
2022-01-21 23:14:34 +01:00
<!-- Quest plugins -->
</dependencies>
</project>