forked from Upstream/CitizensCMD
179 lines
6.5 KiB
XML
179 lines
6.5 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>citizens-cmd</artifactId>
|
|
<version>2.5.1</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>CitizensCMD</name>
|
|
|
|
<description>citizens-cmd</description>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<spigot.version>1.18.2-R0.1-SNAPSHOT</spigot.version>
|
|
<citizens.version>2.0.29-SNAPSHOT</citizens.version>
|
|
<papi.version>2.11.1</papi.version>
|
|
<vault.version>1.7</vault.version>
|
|
<jsonmsg.version>1.3.1-SNAPSHOT</jsonmsg.version>
|
|
<utils.version>341169d6e9</utils.version>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<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 -->
|
|
<!-- JSON Message -->
|
|
<dependency>
|
|
<groupId>me.rayzr522</groupId>
|
|
<artifactId>jsonmessage</artifactId>
|
|
<version>${jsonmsg.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- Matt's utils -->
|
|
<dependency>
|
|
<groupId>com.github.ipsk</groupId>
|
|
<artifactId>MattUtils</artifactId>
|
|
<version>${utils.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- Matt's Framework -->
|
|
<dependency>
|
|
<groupId>me.mattstudios.utils</groupId>
|
|
<artifactId>matt-framework</artifactId>
|
|
<version>1.4.3</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<!-- bStats -->
|
|
<dependency>
|
|
<groupId>org.bstats</groupId>
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
<version>1.5</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.10.0</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.2.4</version>
|
|
<configuration>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>org.bstats</pattern>
|
|
<shadedPattern>me.mattstudios.citizenscmd.metrics</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>me.mattstudios.mf</pattern>
|
|
<shadedPattern>me.mattstudios.citizenscmd.mf</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>me.mattstudios.utils</pattern>
|
|
<shadedPattern>me.mattstudios.citizenscmd.utility</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>me.rayzr522.jsonmessage</pattern>
|
|
<shadedPattern>me.mattstudios.citizenscmd.json</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>org.apache.commons.io</pattern>
|
|
<shadedPattern>me.mattstudios.citizenscmd.io</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> |