2014-06-01 20:32:28 +02: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>com.acrobot.chestshop</groupId>
|
|
|
|
<artifactId>chestshop</artifactId>
|
2018-01-09 01:04:45 +01:00
|
|
|
<version>3.9.1-SNAPSHOT</version>
|
2014-06-01 20:32:28 +02:00
|
|
|
<description>Chest-and-sign shop plugin for Bukkit</description>
|
2018-01-11 15:29:31 +01:00
|
|
|
<name>ChestShop</name>
|
2014-06-01 20:32:28 +02:00
|
|
|
|
|
|
|
<scm>
|
2017-05-09 15:55:28 +02:00
|
|
|
<connection>scm:git:git://github.com/ChestShop-authors/ChestShop-3</connection>
|
|
|
|
<developerConnection>scm:git:ssh://git@github.com/ChestShop-authors/ChestShop-3.git</developerConnection>
|
|
|
|
<url>https://github.com/ChestShop-authors/ChestShop-3</url>
|
2014-06-01 20:32:28 +02:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
2015-07-12 21:40:50 +02:00
|
|
|
<id>spigotmc-repo</id>
|
2015-07-12 20:32:58 +02:00
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public</url>
|
2014-06-01 20:32:28 +02:00
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>sk89q-repo</id>
|
2015-07-12 20:32:58 +02:00
|
|
|
<url>http://maven.sk89q.com/artifactory/repo/</url>
|
2014-06-01 20:32:28 +02:00
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>mcstats-releases</id>
|
|
|
|
<url>http://repo.mcstats.org/content/repositories/releases/</url>
|
|
|
|
</repository>
|
2017-07-05 16:23:28 +02:00
|
|
|
<repository>
|
|
|
|
<id>bstats-repo</id>
|
|
|
|
<url>http://repo.bstats.org/content/repositories/releases/</url>
|
|
|
|
</repository>
|
2014-06-01 20:32:28 +02:00
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
2016-08-27 02:19:02 +02:00
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases/</url>
|
2015-05-22 13:24:57 +02:00
|
|
|
</repository>
|
2015-08-06 15:59:51 +02:00
|
|
|
<repository>
|
|
|
|
<id>authme-repo</id>
|
|
|
|
<url>http://ci.xephi.fr/plugin/repository/everything/</url>
|
|
|
|
</repository>
|
2018-01-06 17:44:35 +01:00
|
|
|
<repository>
|
|
|
|
<id>minebench-repo</id>
|
|
|
|
<url>https://repo.minebench.de/</url>
|
|
|
|
</repository>
|
2014-06-01 20:32:28 +02:00
|
|
|
<repository>
|
|
|
|
<id>local_repo</id>
|
|
|
|
<url>file://${project.basedir}/repo/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2015-07-12 20:32:58 +02:00
|
|
|
<version>4.12</version>
|
2014-06-01 20:32:28 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.j256.ormlite</groupId>
|
|
|
|
<artifactId>ormlite-jdbc</artifactId>
|
|
|
|
<version>4.48</version>
|
2015-08-01 09:52:13 +02:00
|
|
|
<scope>compile</scope>
|
2014-06-01 20:32:28 +02:00
|
|
|
</dependency>
|
2015-07-12 20:32:58 +02:00
|
|
|
|
2017-06-05 20:29:29 +02:00
|
|
|
<!-- Should be kept in sync with Mojang -->
|
2014-06-01 20:32:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
2017-06-05 20:29:29 +02:00
|
|
|
<version>2.1</version>
|
|
|
|
<scope>provided</scope>
|
2014-06-01 20:32:28 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2016-08-20 22:17:10 +02:00
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2017-07-01 18:11:31 +02:00
|
|
|
<version>1.12-R0.1-SNAPSHOT</version>
|
2015-08-01 09:52:13 +02:00
|
|
|
<scope>provided</scope>
|
2014-06-01 20:32:28 +02:00
|
|
|
</dependency>
|
2015-07-12 20:32:58 +02:00
|
|
|
|
2014-06-01 20:32:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mcstats.bukkit</groupId>
|
|
|
|
<artifactId>metrics</artifactId>
|
2016-07-06 14:55:40 +02:00
|
|
|
<version>R8-SNAPSHOT</version>
|
2015-08-01 09:52:13 +02:00
|
|
|
<scope>compile</scope>
|
2015-07-12 20:32:58 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-06-01 20:32:28 +02:00
|
|
|
</dependency>
|
2015-07-12 20:32:58 +02:00
|
|
|
|
2017-07-05 16:23:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bstats</groupId>
|
|
|
|
<artifactId>bstats-bukkit-lite</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2014-06-01 20:32:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>Vault</artifactId>
|
2016-08-27 02:19:02 +02:00
|
|
|
<version>1.6.6</version>
|
2015-08-01 09:52:13 +02:00
|
|
|
<scope>provided</scope>
|
2015-07-12 20:32:58 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-06-01 20:32:28 +02:00
|
|
|
</dependency>
|
2015-07-12 20:32:58 +02:00
|
|
|
|
2014-06-01 20:32:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>info.somethingodd</groupId>
|
|
|
|
<artifactId>odditem</artifactId>
|
|
|
|
<version>0.9.5</version>
|
2015-08-01 09:52:13 +02:00
|
|
|
<scope>compile</scope>
|
2015-07-12 20:32:58 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-06-01 20:32:28 +02:00
|
|
|
</dependency>
|
2015-07-12 20:32:58 +02:00
|
|
|
|
|
|
|
|
2014-06-01 20:32:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.herocraftonline.heroes</groupId>
|
2014-06-29 22:22:20 +02:00
|
|
|
<artifactId>Heroes</artifactId>
|
2016-08-27 02:36:35 +02:00
|
|
|
<version>1.5.5</version>
|
2015-08-01 09:52:13 +02:00
|
|
|
<scope>provided</scope>
|
2015-07-12 20:32:58 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2016-08-27 02:36:35 +02:00
|
|
|
<groupId>*</groupId>
|
|
|
|
<artifactId>*</artifactId>
|
2015-07-12 20:32:58 +02:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-06-01 20:32:28 +02:00
|
|
|
</dependency>
|
2015-07-12 20:32:58 +02:00
|
|
|
|
2015-08-06 15:59:51 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>fr.xephi</groupId>
|
|
|
|
<artifactId>authme</artifactId>
|
2016-08-20 22:17:10 +02:00
|
|
|
<version>5.2-SNAPSHOT</version>
|
2015-08-06 15:59:51 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2014-06-01 20:32:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.griefcraft.lwc</groupId>
|
|
|
|
<artifactId>lwc</artifactId>
|
|
|
|
<version>4.3.1</version>
|
2015-08-01 09:52:13 +02:00
|
|
|
<scope>provided</scope>
|
2015-07-12 20:32:58 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-06-01 20:32:28 +02:00
|
|
|
</dependency>
|
2015-07-12 20:32:58 +02:00
|
|
|
|
2014-06-01 20:32:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.daemitus.deadbolt</groupId>
|
|
|
|
<artifactId>deadbolt</artifactId>
|
|
|
|
<version>2.2</version>
|
2015-08-01 09:52:13 +02:00
|
|
|
<scope>provided</scope>
|
2015-07-12 20:32:58 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-06-01 20:32:28 +02:00
|
|
|
</dependency>
|
2015-07-12 20:32:58 +02:00
|
|
|
|
2014-06-01 20:32:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldguard</artifactId>
|
2015-07-12 20:32:58 +02:00
|
|
|
<version>6.1.1-SNAPSHOT</version>
|
2015-08-01 09:52:13 +02:00
|
|
|
<scope>provided</scope>
|
2015-07-12 20:32:58 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-06-01 20:32:28 +02:00
|
|
|
</dependency>
|
2015-07-12 20:32:58 +02:00
|
|
|
|
2014-06-01 20:32:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.webkonsept.bukkit.simplechestlock</groupId>
|
|
|
|
<artifactId>simplechestlock</artifactId>
|
|
|
|
<version>1.2.1</version>
|
2015-08-01 09:52:13 +02:00
|
|
|
<scope>provided</scope>
|
2015-07-12 20:32:58 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-06-01 20:32:28 +02:00
|
|
|
</dependency>
|
2015-07-12 20:32:58 +02:00
|
|
|
|
2014-06-01 20:32:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.yi.acru.bukkit.lockette</groupId>
|
|
|
|
<artifactId>lockette</artifactId>
|
2015-03-17 11:37:10 +01:00
|
|
|
<version>1.8.14</version>
|
2015-08-01 09:52:13 +02:00
|
|
|
<scope>provided</scope>
|
2015-07-12 20:32:58 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-06-01 20:32:28 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-05-09 15:54:32 +02:00
|
|
|
<groupId>com.bekvon.bukkit</groupId>
|
|
|
|
<artifactId>residence</artifactId>
|
|
|
|
<version>4.6.1.4</version>
|
2015-08-01 09:52:13 +02:00
|
|
|
<scope>provided</scope>
|
2015-07-12 20:32:58 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-06-01 20:32:28 +02:00
|
|
|
</dependency>
|
2018-01-06 17:44:35 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.themoep.showitem</groupId>
|
|
|
|
<artifactId>api</artifactId>
|
|
|
|
<version>1.2.24</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2014-06-01 20:32:28 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2018-01-11 15:29:31 +01:00
|
|
|
<finalName>${project.name}</finalName>
|
2014-06-01 20:32:28 +02:00
|
|
|
<plugins>
|
2014-11-30 20:15:27 +01:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2018-01-11 15:29:31 +01:00
|
|
|
<version>3.6.1</version>
|
2014-11-30 20:15:27 +01:00
|
|
|
<configuration>
|
2017-06-28 22:37:45 +02:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2014-11-30 20:15:27 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-06-01 20:32:28 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2018-01-11 15:29:31 +01:00
|
|
|
<version>3.1.0</version>
|
2014-06-01 20:32:28 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>org.mcstats.bukkit</include>
|
2017-07-05 16:23:28 +02:00
|
|
|
<include>org.bstats:*</include>
|
2014-06-01 20:32:28 +02:00
|
|
|
<include>net.gravitydevelopment.updater</include>
|
|
|
|
<include>com.j256.ormlite</include>
|
2017-06-05 20:29:29 +02:00
|
|
|
<include>org.apache.logging.log4j</include>
|
2014-06-01 20:32:28 +02:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.mcstats</pattern>
|
2017-07-05 16:23:28 +02:00
|
|
|
<shadedPattern>com.Acrobot.ChestShop.Metrics.MCStats</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.bstats</pattern>
|
|
|
|
<shadedPattern>com.Acrobot.ChestShop.Metrics.BStats</shadedPattern>
|
2014-06-01 20:32:28 +02:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>net.gravitydevelopment.updater</pattern>
|
|
|
|
<shadedPattern>com.Acrobot.ChestShop.Updater</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.j256.ormlite</pattern>
|
|
|
|
<shadedPattern>com.Acrobot.ChestShop.ORMlite</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
|
|
|
|
2015-05-22 13:24:57 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2017-02-26 21:33:37 +01:00
|
|
|
<build.number>${buildNumber}</build.number>
|
|
|
|
<bukkit.plugin.version>${project.version} ${buildDescription}</bukkit.plugin.version>
|
2015-05-22 13:24:57 +02:00
|
|
|
</properties>
|
|
|
|
|
2017-02-26 21:33:37 +01:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>static_build_number</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>!env.BUILD_NUMBER</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<buildNumber>0</buildNumber>
|
2017-06-29 00:56:45 +02:00
|
|
|
<buildDescription>(compiled at ${maven.build.timestamp})</buildDescription>
|
2017-02-26 21:33:37 +01:00
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>dynamic_build_number</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>env.BUILD_NUMBER</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<buildNumber>${env.BUILD_NUMBER}</buildNumber>
|
2018-01-09 19:53:00 +01:00
|
|
|
<buildDescription>(build ${env.BUILD_NUMBER})</buildDescription>
|
2017-02-26 21:33:37 +01:00
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2014-06-01 20:32:28 +02:00
|
|
|
</project>
|