2019-12-14 12:43:49 +01:00
|
|
|
<?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>de.epiceric.shopchest</groupId>
|
2020-03-19 15:08:42 +01:00
|
|
|
<artifactId>shopchest</artifactId>
|
2019-12-14 12:43:49 +01:00
|
|
|
<version>1.13-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<name>ShopChest</name>
|
|
|
|
<url>https://www.spigotmc.org/resources/shopchest.11431/</url>
|
2020-03-19 15:15:22 +01:00
|
|
|
<description>A Bukkit plugin letting players create custom chest shops.</description>
|
2019-12-14 12:43:49 +01:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>de.epiceric.shopchest</groupId>
|
|
|
|
<artifactId>shopchest-parent</artifactId>
|
|
|
|
<version>1.13-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>codemc-repo</id>
|
|
|
|
<url>https://repo.codemc.org/repository/maven-public/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.7</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Shaded dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.epiceric.shopchest</groupId>
|
|
|
|
<artifactId>shopchest-api</artifactId>
|
|
|
|
<version>1.13-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2020-03-19 15:01:18 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>de.epiceric.shopchest</groupId>
|
|
|
|
<artifactId>shopchest-nms</artifactId>
|
|
|
|
<version>1.13-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2019-12-14 12:43:49 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bstats</groupId>
|
|
|
|
<artifactId>bstats-bukkit</artifactId>
|
2022-08-20 22:35:41 +02:00
|
|
|
<version>2.1.0</version>
|
2019-12-14 12:43:49 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
<version>3.3.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-jdk14</artifactId>
|
|
|
|
<version>1.7.26</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.1.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.bstats.bukkit</pattern>
|
|
|
|
<shadedPattern>de.epiceric.shopchest.dependencies.bstats</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.zaxxer.hikari</pattern>
|
|
|
|
<shadedPattern>de.epiceric.shopchest.dependencies.hikari</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.slf4j</pattern>
|
|
|
|
<shadedPattern>de.epiceric.shopchest.dependencies.slf4j</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|