mirror of
https://github.com/RonanPlugins/BetterRTP.git
synced 2025-07-01 15:26:44 +00:00
390 lines
15 KiB
XML
390 lines
15 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>me.SuperRonanCraft</groupId>
|
|
<artifactId>BetterRTP</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>3.6.13</version>
|
|
|
|
<!-- Upload patches to https://repo.ronanplugins.com/#/ -->
|
|
|
|
<properties>
|
|
<maven.compiler.release>8</maven.compiler.release>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>dev</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<!-- Local Server Building -->
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.2.2</version>
|
|
<configuration>
|
|
<outputDirectory>../../Java/plugins</outputDirectory>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
<version>3.1.0</version>
|
|
</plugin>
|
|
<plugin>
|
|
<!-- Shade PaperLib into project -->
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.5.0</version>
|
|
<configuration>
|
|
<dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml
|
|
</dependencyReducedPomLocation>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>io.papermc.lib</pattern>
|
|
<shadedPattern>me.SuperRonanCraft.BetterRTP.lib.paperlib</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.tcoded.folialib</pattern>
|
|
<shadedPattern>me.SuperRonanCraft.BetterRTP.lib.folialib</shadedPattern>
|
|
</relocation>
|
|
<!--relocation>
|
|
<pattern>xyz.xenondevs.particle</pattern>
|
|
<shadedPattern>me.SuperRonanCraft.BetterRTP.particleLib</shadedPattern>
|
|
</relocation-->
|
|
</relocations>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.10.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<!-- CAN BE UNCOMMENTED IF YOU HAVE ACCESS TO THE REPO -->
|
|
<!--<repository>
|
|
<id>ronanplugins-private</id>
|
|
<name>RonanPlugins Repository</name>
|
|
<url>https://repo.ronanplugins.com/private</url>
|
|
</repository>-->
|
|
<!-- GitHub based Repos -->
|
|
<repository>
|
|
<id>jitpack.io</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
<!-- Spigot Repo -->
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
<!-- PaperMC Repo -->
|
|
<repository>
|
|
<id>papermc</id>
|
|
<url>https://repo.papermc.io/repository/maven-public/</url>
|
|
</repository>
|
|
<!-- Vault Repo -->
|
|
<repository>
|
|
<id>vault-repo</id>
|
|
<url>https://nexus.hc.to/content/repositories/pub_releases</url>
|
|
</repository>
|
|
<!-- Worldguard Repo -->
|
|
<repository>
|
|
<id>sk89q-repo</id>
|
|
<url>https://maven.enginehub.org/repo/</url>
|
|
</repository>
|
|
<!-- ProjectRed Repo -->
|
|
<repository>
|
|
<id>redprotect-repo</id>
|
|
<url>https://raw.githubusercontent.com/FabioZumbi12/RedProtect/mvn-repo/</url>
|
|
</repository>
|
|
<!-- FactionsUUID Repo -->
|
|
<repository>
|
|
<id>factions-uuid</id>
|
|
<url>https://ci.ender.zone/plugin/repository/everything/</url>
|
|
</repository>
|
|
<!-- ProtocolLib Repo -->
|
|
<repository>
|
|
<id>dmulloy2-repo</id>
|
|
<url>https://repo.dmulloy2.net/nexus/repository/public/</url>
|
|
</repository>
|
|
<!-- EssentialsX Repo -->
|
|
<repository>
|
|
<id>essentials-releases</id>
|
|
<url>https://repo.essentialsx.net/releases/</url>
|
|
</repository>
|
|
<!-- PlaceholderAPI Repo -->
|
|
<repository>
|
|
<id>placeholderapi</id>
|
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
</repository>
|
|
<!-- MinePlots Repo -->
|
|
<repository>
|
|
<id>minecodes-repository-releases</id>
|
|
<name>mineCodes Organization Repository</name>
|
|
<url>https://repository.minecodes.pl/releases</url>
|
|
</repository>
|
|
<!-- Used by Husk plugins -->
|
|
<repository>
|
|
<id>william278-releases</id>
|
|
<url>https://repo.william278.net/releases</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<!--Spigot API-->
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- Spigot Stuff -->
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- Vault -->
|
|
<dependency>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>VaultAPI</artifactId>
|
|
<version>1.7</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- Paper Library for Async Chunk/Teleport -->
|
|
<dependency>
|
|
<groupId>io.papermc</groupId>
|
|
<artifactId>paperlib</artifactId>
|
|
<version>1.0.8</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- Worldguard (https://dev.bukkit.org/projects/worldguard) -->
|
|
<dependency> <!-- Saber Factions screws up if updated -->
|
|
<groupId>com.sk89q.worldguard</groupId>
|
|
<artifactId>worldguard-bukkit</artifactId>
|
|
<version>7.0.3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- RedProtect (https://www.spigotmc.org/resources/redprotect.15841/) -->
|
|
<dependency>
|
|
<groupId>br.net.fabiozumbi12.RedProtect</groupId>
|
|
<artifactId>RedProtect-Core</artifactId>
|
|
<version>7.7.3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>br.net.fabiozumbi12.RedProtect</groupId>
|
|
<artifactId>RedProtect-Spigot-1.13</artifactId>
|
|
<version>7.7.3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- FactionsUUID (https://www.spigotmc.org/resources/factionsuuid.1035/) -->
|
|
<dependency>
|
|
<groupId>com.massivecraft</groupId>
|
|
<artifactId>Factions</artifactId>
|
|
<version>1.6.9.5-U0.6.8</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- Lands (https://www.spigotmc.org/resources/lands.53313/) -->
|
|
<dependency>
|
|
<groupId>com.github.angeschossen</groupId>
|
|
<artifactId>LandsAPI</artifactId>
|
|
<version>6.28.11</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- ProtocolLib -->
|
|
<dependency>
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
<artifactId>ProtocolLib</artifactId>
|
|
<version>4.8.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- Towny (https://www.spigotmc.org/resources/towny.72694/) -->
|
|
<dependency>
|
|
<groupId>com.github.TownyAdvanced</groupId>
|
|
<artifactId>Towny</artifactId>
|
|
<version>0.98.6.6</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- GriefPrevention (https://www.spigotmc.org/resources/griefprevention.1884/) -->
|
|
<dependency>
|
|
<groupId>com.github.TechFortress</groupId>
|
|
<artifactId>GriefPrevention</artifactId>
|
|
<version>16.18</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- KingdomsX v1.10.5.2 (https://www.spigotmc.org/resources/kingdomsx.77670/) -->
|
|
<dependency>
|
|
<groupId>com.github.cryptomorin</groupId>
|
|
<artifactId>kingdoms</artifactId>
|
|
<version>1.16.8.1.1</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>*</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- GriefDefender (https://www.spigotmc.org/resources/griefdefender.68900/) -->
|
|
<dependency>
|
|
<groupId>com.github.bloodmc</groupId>
|
|
<artifactId>GriefDefenderApi</artifactId>
|
|
<version>920a610</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- Peublos (https://www.spigotmc.org/resources/pueblos.91255/) -->
|
|
<dependency>
|
|
<groupId>com.github.SuperRonanCraft</groupId>
|
|
<artifactId>Pueblos</artifactId>
|
|
<version>97b96c9</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- Particles Library
|
|
https://github.com/ByteZ1337/ParticleLib
|
|
(https://github.com/ByteZ1337/ParticleLib/blob/master/src/main/java/xyz/xenondevs/particle/ParticleEffect.java) -->
|
|
<dependency>
|
|
<groupId>xyz.xenondevs</groupId>
|
|
<artifactId>particle</artifactId>
|
|
<version>1.8.4</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- Lombok Support (@Getter & @Setter)-->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.26</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- EssentialsX -->
|
|
<dependency>
|
|
<groupId>net.essentialsx</groupId>
|
|
<artifactId>EssentialsX</artifactId>
|
|
<version>2.20.1</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bstats</groupId>
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- Saber Factions (https://www.spigotmc.org/resources/saberfactions.69771/) (Added in 3.4.5)-->
|
|
<dependency> <!-- WorldGuard screws up if updated -->
|
|
<groupId>com.github.SaberLLC</groupId>
|
|
<artifactId>Saber-Factions</artifactId>
|
|
<version>2.4.0-RC</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.sk89q.worldguard</groupId>
|
|
<artifactId>worldguard-bukkit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- PlaceholderAPI Support (Added in 3.4.5)-->
|
|
<dependency>
|
|
<groupId>me.clip</groupId>
|
|
<artifactId>placeholderapi</artifactId>
|
|
<version>2.11.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- HuskClaims (https://www.spigotmc.org/resources/huskclaims.114467/) (Added in 3.6.13)-->
|
|
<dependency>
|
|
<groupId>net.william278.huskclaims</groupId>
|
|
<artifactId>huskclaims-bukkit</artifactId>
|
|
<version>1.5</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- Husktown (https://www.spigotmc.org/resources/husktowns.92672/) (Added in 3.4.5)-->
|
|
<dependency>
|
|
<groupId>net.william278.husktowns</groupId>
|
|
<artifactId>husktowns-bukkit</artifactId>
|
|
<version>3.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- MinePlots (https://builtbybit.com/resources/mineplots.21646/) (Added in 3.6.6 ) -->
|
|
<dependency>
|
|
<groupId>pl.minecodes.plots</groupId>
|
|
<artifactId>plugin-api</artifactId>
|
|
<version>3.4.5</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- FoliaLib -->
|
|
<dependency>
|
|
<groupId>com.github.TechnicallyCoded</groupId>
|
|
<artifactId>FoliaLib</artifactId>
|
|
<version>0.4.3</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- FactionsBridge -->
|
|
<dependency>
|
|
<groupId>com.dansplugins.factionsystem</groupId>
|
|
<artifactId>FactionsBridge</artifactId>
|
|
<version>1.3.8</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/FactionsBridge-1.3.8.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.WhipDevelopment</groupId>
|
|
<artifactId>CrashClaim</artifactId>
|
|
<version>c697d3e9ef</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- CAN BE UNCOMMENTED IF YOU HAVE ACCESS TO THE PLUGIN -->
|
|
<!-- Private Repoed -->
|
|
<!-- This is uploaded to our private repo on https://repo.ronanplugins.com -->
|
|
<!-- hClaims (https://www.spigotmc.org/resources/90540/) -->
|
|
<!--<dependency>
|
|
<groupId>com.ronanplugins</groupId>
|
|
<artifactId>hClaims</artifactId>
|
|
<version>2.5.3</version>
|
|
<scope>provided</scope>
|
|
<optional>true</optional>
|
|
</dependency>-->
|
|
<!-- Provided by repo: devmart-public -->
|
|
<dependency>
|
|
<groupId>com.bekvon.bukkit.residence</groupId>
|
|
<artifactId>Residence</artifactId>
|
|
<version>5.1.4.1</version>
|
|
<scope>system</scope>
|
|
<optional>true</optional>
|
|
<systemPath>${project.basedir}/lib/Residence5.1.4.1.jar</systemPath>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|