forked from Upstream/CitizensCMD
211 lines
8.0 KiB
XML
211 lines
8.0 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.mattstudios.plugins</groupId>
|
|
<artifactId>CitizensCMD</artifactId>
|
|
<version>2.7.0</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<spigot.version>1.20.6-R0.1-SNAPSHOT</spigot.version>
|
|
<citizens.version>2.0.34-SNAPSHOT</citizens.version>
|
|
<papi.version>2.11.5</papi.version>
|
|
<vault.version>1.7</vault.version>
|
|
<adventure.version>4.17.0</adventure.version>
|
|
<adventure-bukkit.version>4.3.2</adventure-bukkit.version>
|
|
<configme.version>1.4.1</configme.version>
|
|
<triumph-cmd.version>2.0.0-SNAPSHOT</triumph-cmd.version>
|
|
<bstats.version>3.0.2</bstats.version>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>Triumph-Repo</id>
|
|
<url>https://repo.triumphteam.dev/snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>Citizens-Repo</id>
|
|
<url>https://repo.citizensnpcs.co/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>SpigotMC-Repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>Rayzr-Repo</id>
|
|
<url>https://rayzr.dev/repo/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>ExtendedClip-Repo</id>
|
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>JitPack-Repo</id>
|
|
<url>https://jitpack.io/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>CodeMC-Repo</id>
|
|
<url>https://repo.codemc.org/repository/maven-public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>Sonatype-Repo</id>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<!-- Provided -->
|
|
<!-- Spigot API -->
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>${spigot.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- Citizens API -->
|
|
<dependency>
|
|
<groupId>net.citizensnpcs</groupId>
|
|
<artifactId>citizensapi</artifactId>
|
|
<version>${citizens.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- PAPI API -->
|
|
<dependency>
|
|
<groupId>me.clip</groupId>
|
|
<artifactId>placeholderapi</artifactId>
|
|
<version>${papi.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- Vault API -->
|
|
<dependency>
|
|
<groupId>com.github.MilkBowl</groupId>
|
|
<artifactId>VaultAPI</artifactId>
|
|
<version>${vault.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Compile -->
|
|
<!-- Adventure! -->
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-api</artifactId>
|
|
<version>${adventure.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-text-minimessage</artifactId>
|
|
<version>${adventure.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.kyori</groupId>
|
|
<artifactId>adventure-platform-bukkit</artifactId>
|
|
<version>${adventure-bukkit.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- Configuration -->
|
|
<dependency>
|
|
<groupId>ch.jalu</groupId>
|
|
<artifactId>configme</artifactId>
|
|
<version>${configme.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- Matt's Framework -->
|
|
<dependency>
|
|
<groupId>dev.triumphteam</groupId>
|
|
<artifactId>triumph-cmd-bukkit</artifactId>
|
|
<version>${triumph-cmd.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- bStats -->
|
|
<dependency>
|
|
<groupId>org.bstats</groupId>
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
<version>${bstats.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<defaultGoal>clean package</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.12.1</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.5.1</version>
|
|
<configuration>
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
<excludes>
|
|
<exclude>META-INF/</exclude>
|
|
</excludes>
|
|
</filter>
|
|
</filters>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>org.bstats</pattern>
|
|
<shadedPattern>me.mattstudios.citizenscmd.shaded.bstats</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>dev.triumphteam</pattern>
|
|
<shadedPattern>me.mattstudios.citizenscmd.shaded.triumphteam</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>net.kyori</pattern>
|
|
<shadedPattern>me.mattstudios.citizenscmd.shaded.kyori</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>ch.jalu</pattern>
|
|
<shadedPattern>me.mattstudios.citizenscmd.shaded.jalu</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.intellij</pattern>
|
|
<shadedPattern>me.mattstudios.citizenscmd.shaded.intellij</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.jetbrains</pattern>
|
|
<shadedPattern>me.mattstudios.citizenscmd.shaded.jetbrains</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.yaml</pattern>
|
|
<shadedPattern>me.mattstudios.citizenscmd.shaded.yaml</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<minimizeJar>true</minimizeJar>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
|
|
</build>
|
|
</project> |