2018-03-21 14:15:51 +01:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2018-03-21 00:04:14 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
|
2018-06-13 18:50:22 +02:00
|
|
|
<version>2.9.0</version>
|
2018-03-21 00:04:14 +01:00
|
|
|
<name>PlaceholderAPI</name>
|
2018-03-22 20:15:47 +01:00
|
|
|
<description>An awesome placeholder provider!</description>
|
2018-03-21 00:04:14 +01:00
|
|
|
<url>http://extendedclip.com</url>
|
|
|
|
|
|
|
|
<properties>
|
2018-03-21 14:15:51 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2018-03-21 00:04:14 +01:00
|
|
|
|
2018-03-21 14:15:51 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
2018-03-21 00:04:14 +01:00
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
2018-03-21 14:15:51 +01:00
|
|
|
</repository>
|
2018-03-22 20:15:47 +01:00
|
|
|
<repository>
|
|
|
|
<id>bstats-repo</id>
|
|
|
|
<url>http://repo.bstats.org/content/repositories/releases/</url>
|
|
|
|
</repository>
|
2018-04-08 10:00:25 +02:00
|
|
|
<repository>
|
|
|
|
<id>rayzr-repo</id>
|
|
|
|
<url>https://cdn.rawgit.com/Rayzr522/maven-repo/master/</url>
|
|
|
|
</repository>
|
2018-03-21 14:15:51 +01:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2018-03-21 00:04:14 +01:00
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.12.2-R0.1-SNAPSHOT</version>
|
2018-03-21 14:15:51 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-03-22 20:15:47 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bstats</groupId>
|
|
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2018-04-08 10:00:25 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.rayzr522</groupId>
|
|
|
|
<artifactId>jsonmessage</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2018-03-21 14:15:51 +01:00
|
|
|
</dependencies>
|
2018-03-21 00:04:14 +01:00
|
|
|
|
2018-03-21 14:15:51 +01:00
|
|
|
<build>
|
|
|
|
<defaultGoal>clean package</defaultGoal>
|
2018-03-24 18:14:51 +01:00
|
|
|
|
2018-03-21 14:15:51 +01:00
|
|
|
<plugins>
|
2018-03-24 18:14:51 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
|
|
|
<finalName>${project.name}-${project.version}</finalName>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-03-21 14:15:51 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.7.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.1.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2018-04-08 21:24:09 +02:00
|
|
|
<minimizeJar>false</minimizeJar>
|
2018-03-22 20:15:47 +01:00
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.bstats</pattern>
|
|
|
|
<shadedPattern>me.clip.placeholderapi.metrics</shadedPattern>
|
|
|
|
</relocation>
|
2018-04-08 10:00:25 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>me.rayzr522</pattern>
|
|
|
|
<shadedPattern>me.clip.placeholderapi.util</shadedPattern>
|
|
|
|
</relocation>
|
2018-03-22 20:15:47 +01:00
|
|
|
</relocations>
|
2018-03-21 14:15:51 +01:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
2018-04-10 23:20:59 +02:00
|
|
|
</project>
|