forked from Upstream/CitizensCMD
166 lines
5.8 KiB
XML
166 lines
5.8 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</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>CitizensCMD</name>
|
|
|
|
<description>citizens-cmd</description>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<spigot.version>1.16.2-R0.1-SNAPSHOT</spigot.version>
|
|
<citizens.version>2.0.27-SNAPSHOT</citizens.version>
|
|
<papi.version>2.10.9</papi.version>
|
|
<vault.version>da407c0059</vault.version>
|
|
<jsonmsg.version>1.2.1</jsonmsg.version>
|
|
<utils.version>341169d6e9</utils.version>
|
|
</properties>
|
|
|
|
<build>
|
|
<defaultGoal>clean package</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.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.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>
|
|
</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>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>everything</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://cdn.rawgit.com/Rayzr522/maven-repo/master/</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>CodeMC</id>
|
|
<url>https://repo.codemc.org/repository/maven-public</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 repo -->
|
|
<dependency>
|
|
<groupId>me.rayzr522</groupId>
|
|
<artifactId>jsonmessage</artifactId>
|
|
<version>${jsonmsg.version}</version>
|
|
</dependency>
|
|
<!-- My utils -->
|
|
<dependency>
|
|
<groupId>com.github.ipsk</groupId>
|
|
<artifactId>MattUtils</artifactId>
|
|
<version>${utils.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>me.mattstudios.utils</groupId>
|
|
<artifactId>matts-framework</artifactId>
|
|
<version>1.0.8-BETA</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.bstats</groupId>
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
<version>1.5</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |