ChestShop-3/pom.xml

399 lines
14 KiB
XML
Raw Normal View History

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-07-25 23:54:51 +02:00
<version>3.9.3-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>
2018-10-15 21:22:42 +02:00
<url>http://maven.sk89q.com/repo/</url>
2014-06-01 20:32:28 +02:00
</repository>
<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>
<repository>
<id>authme-repo</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
</repository>
<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>
<repository>
<id>reserve-repo</id>
<url>https://dl.bintray.com/theneweconomy/java/</url>
</repository>
2014-06-01 20:32:28 +02:00
</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>5.1</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
<!-- 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>
<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>
<version>1.13-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
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit-lite</artifactId>
<version>1.2</version>
<scope>compile</scope>
</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>
<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.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
<dependency>
<groupId>fr.xephi</groupId>
<artifactId>authme</artifactId>
<version>5.5.0-SNAPSHOT</version>
<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>
2018-08-29 21:32:27 +02:00
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sk89q.worldedit</groupId>
2018-10-15 21:22:42 +02:00
<artifactId>worldedit-core</artifactId>
<version>7.0.0-SNAPSHOT</version>
2018-08-29 21:32:27 +02:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sk89q.worldguard</groupId>
<artifactId>worldguard-legacy</artifactId>
2018-10-15 21:22:42 +02:00
<version>7.0.0-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>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>
2014-06-01 20:32:28 +02:00
<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>
<dependency>
<groupId>de.themoep.showitem</groupId>
<artifactId>api</artifactId>
<version>1.2.24</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.tnemc</groupId>
<artifactId>Reserve</artifactId>
<version>0.1.0.10</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>
<include>org.bstats:*</include>
2014-06-01 20:32:28 +02:00
<include>net.gravitydevelopment.updater</include>
<include>com.j256.ormlite</include>
<include>org.apache.logging.log4j</include>
2018-08-29 21:32:27 +02:00
<include>javax.persistence</include>
2014-06-01 20:32:28 +02:00
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.mcstats</pattern>
<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>
2018-08-29 21:32:27 +02:00
<relocation>
<pattern>javax.persistence</pattern>
<shadedPattern>com.Acrobot.ChestShop.javax.persistence</shadedPattern>
</relocation>
2014-06-01 20:32:28 +02:00
</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>
<build.number>${buildNumber}</build.number>
<bukkit.plugin.version>${project.version} ${buildDescription}</bukkit.plugin.version>
2015-05-22 13:24:57 +02:00
</properties>
<profiles>
<profile>
<id>static_build_number</id>
<activation>
<property>
<name>!env.BUILD_NUMBER</name>
</property>
</activation>
<properties>
<buildNumber>0</buildNumber>
<buildDescription>(compiled at ${maven.build.timestamp})</buildDescription>
</properties>
</profile>
<profile>
<id>dynamic_build_number</id>
<activation>
<property>
<name>env.BUILD_NUMBER</name>
</property>
</activation>
<properties>
<buildNumber>${env.BUILD_NUMBER}</buildNumber>
<buildDescription>(build ${env.BUILD_NUMBER})</buildDescription>
</properties>
</profile>
</profiles>
2014-06-01 20:32:28 +02:00
</project>