AuthMeReloaded/pom.xml

624 lines
17 KiB
XML
Raw Normal View History

2015-06-17 14:09:40 +02:00
<?xml version="1.0" encoding="UTF-8"?>
2015-06-17 22:59:00 +02:00
<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>
2015-06-30 14:39:07 +02:00
2015-07-06 15:44:51 +02:00
<groupId>fr.xephi</groupId>
<artifactId>authme</artifactId>
2015-07-14 05:28:21 +02:00
<version>5.0-SNAPSHOT</version>
2015-06-30 14:39:07 +02:00
2015-07-25 18:45:48 +02:00
<packaging>jar</packaging>
2015-06-17 22:59:00 +02:00
<name>AuthMeReloaded</name>
<description>Authentication plugin for CraftBukkit/Spigot!</description>
2015-08-02 02:47:16 +02:00
<inceptionYear>2013</inceptionYear>
2015-06-17 22:59:00 +02:00
<url>http://dev.bukkit.org/bukkit-plugins/authme-reloaded/</url>
2015-08-02 02:47:16 +02:00
<!-- See also: https://www.spigotmc.org/resources/authme-reloaded.6269/ -->
2015-06-30 14:39:07 +02:00
2015-08-02 02:47:16 +02:00
<scm>
<connection>scm:git:https://github.com/Xephi/AuthMeReloaded.git</connection>
<developerConnection>scm:git:git@github.com:Xephi/AuthMeReloaded.git</developerConnection>
<url>http://github.com/Xephi/AuthMeReloaded</url>
<tag>HEAD</tag>
</scm>
2015-06-30 14:39:07 +02:00
2015-07-09 10:54:13 +02:00
<!-- Official Build Server -->
2015-06-17 22:59:00 +02:00
<ciManagement>
<system>jenkins</system>
2015-07-09 10:54:13 +02:00
<url>http://ci.xephi.fr/job/AuthMeReloaded/</url>
2015-06-17 22:59:00 +02:00
</ciManagement>
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
<issueManagement>
<system>GitHub</system>
<url>https://github.com/Xephi/AuthMeReloaded/issues</url>
</issueManagement>
2015-06-30 14:39:07 +02:00
2015-08-02 02:47:16 +02:00
<licenses>
<license>
<name>Apache-2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Change Compiler Version (JDK) HERE! -->
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<!-- Change MC Version HERE! -->
<bukkitVersion>1.8.8-R0.1-SNAPSHOT</bukkitVersion>
<jarPluginName>AuthMe</jarPluginName>
</properties>
2015-06-17 22:59:00 +02:00
<build>
<plugins>
2015-06-22 13:01:26 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
2015-06-30 14:39:07 +02:00
<plugin>
2015-06-26 16:06:26 +02:00
<groupId>com.google.code.maven-replacer-plugin</groupId>
2015-06-30 14:39:07 +02:00
<artifactId>replacer</artifactId>
<version>1.5.3</version>
2015-06-26 16:06:26 +02:00
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>replace</goal>
</goals>
</execution>
</executions>
<configuration>
<file>target/classes/plugin.yml</file>
<replacements>
<replacement>
2015-06-30 14:39:07 +02:00
<token>maven-version</token>
<value>${project.version}</value>
2015-06-26 16:06:26 +02:00
</replacement>
</replacements>
</configuration>
2015-06-30 14:39:07 +02:00
</plugin>
2015-06-17 22:59:00 +02:00
<plugin>
<artifactId>maven-jar-plugin</artifactId>
2015-06-22 13:01:26 +02:00
<version>2.6</version>
2015-06-17 22:59:00 +02:00
<configuration>
<archive>
<manifestFile>${manifest.file}</manifestFile>
</archive>
2015-08-02 02:47:16 +02:00
<finalName>${jarPluginName}-${project.version}</finalName>
2015-06-17 22:59:00 +02:00
</configuration>
</plugin>
2015-07-05 04:31:05 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2015-07-31 02:11:29 +02:00
<version>2.4.1</version>
2015-07-05 04:31:05 +02:00
<configuration>
<artifactSet>
<includes>
<include>com.maxmind.geoip:*</include>
2015-07-13 22:11:51 +02:00
<include>javax.mail:*</include>
<include>com.sun.mail:*</include>
2015-07-05 04:31:05 +02:00
<include>com.comphenix.attribute:*</include>
2015-07-06 15:43:30 +02:00
<include>org.mcstats.*:*</include>
<include>com.zaxxer:*</include>
<include>org.slf4j:*</include>
2015-07-05 04:31:05 +02:00
</includes>
</artifactSet>
2015-07-06 15:43:30 +02:00
<relocations>
<relocation>
<pattern>org.mcstats</pattern>
2015-07-06 15:44:51 +02:00
<shadedPattern>fr.xephi.authme</shadedPattern>
2015-07-06 15:43:30 +02:00
</relocation>
</relocations>
2015-07-05 04:31:05 +02:00
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
2015-08-01 03:30:42 +02:00
<plugin>
2015-07-31 03:23:01 +02:00
<groupId>com.versioneye</groupId>
<artifactId>versioneye-maven-plugin</artifactId>
<version>3.5.1</version>
2015-07-31 03:30:42 +02:00
<configuration>
2015-07-31 03:31:20 +02:00
<projectId>55bab9e8653762002000190a</projectId>
2015-08-01 03:30:42 +02:00
<!--<apiKey>my_secret_api_key</apiKey> -->
2015-07-31 03:30:42 +02:00
</configuration>
2015-07-31 03:23:01 +02:00
</plugin>
2015-06-17 22:59:00 +02:00
</plugins>
</build>
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
<repositories>
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
<!-- SpigotMC Repo (Bukkit and SpigotAPI) -->
<repository>
<id>spigot-repo</id>
2015-07-10 16:19:13 +02:00
<url>https://hub.spigotmc.org/nexus/content/groups/public</url>
2015-06-17 22:59:00 +02:00
</repository>
2015-06-30 14:39:07 +02:00
2015-07-10 12:05:49 +02:00
<!-- Essentials Repo -->
2015-06-17 22:59:00 +02:00
<repository>
2015-07-10 12:05:49 +02:00
<id>ess-repo</id>
<url>http://repo.ess3.net/content/groups/public</url>
2015-06-30 19:40:12 +02:00
</repository>
2015-06-30 14:39:07 +02:00
2015-07-10 16:07:02 +02:00
<!-- Citizens API 2.X Repo -->
<repository>
2015-07-10 16:07:02 +02:00
<id>citizensapi-repo</id>
2015-07-10 16:22:39 +02:00
<url>http://ci.citizensnpcs.co/plugin/repository/project/CitizensAPI/LastSuccessful/repository</url>
</repository>
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
<!-- CombatTagPlus Repo -->
<repository>
<id>minelink-thirdparty</id>
<url>http://repo.minelink.net/content/repositories/public</url>
</repository>
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
<!-- Attribute Repo -->
<repository>
<id>comphenix-snapshots</id>
2015-07-10 16:22:39 +02:00
<url>http://repo.comphenix.net/content/repositories/public</url>
2015-06-17 22:59:00 +02:00
</repository>
2015-06-30 14:39:07 +02:00
2015-06-17 23:44:51 +02:00
<!-- Multiverse Repo -->
<repository>
<id>onarandombox</id>
2015-07-10 14:41:17 +02:00
<url>http://repo.onarandombox.com/content/groups/public</url>
2015-06-17 23:44:51 +02:00
</repository>
2015-06-30 14:39:07 +02:00
2015-07-10 12:05:49 +02:00
<!-- Vault Repo -->
<repository>
<id>vault-repo</id>
<url>http://nexus.theyeticave.net/content/repositories/pub_releases</url>
</repository>
<!-- XAuth Repo -->
<repository>
<id>luricos-releases</id>
2015-07-10 16:22:39 +02:00
<url>http://repo.luricos.de/content/repositories/releases</url>
2015-07-10 12:05:49 +02:00
</repository>
2015-07-12 20:46:39 +02:00
<!-- Xephi Repo (ChestShop) -->
<repository>
2015-07-12 21:11:17 +02:00
<id>xephi-repo</id>
2015-07-12 20:46:39 +02:00
<url>http://ci.xephi.fr/plugin/repository/everything/</url>
</repository>
2015-08-01 03:45:41 +02:00
<!-- Metrics Snapshots Repo -->
2015-08-01 03:30:42 +02:00
<repository>
<id>mcstats-snapshots</id>
<url>http://repo.mcstats.org/content/repositories/snapshots/</url>
</repository>
2015-06-17 22:59:00 +02:00
</repositories>
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
<dependencies>
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
<!-- Maven Dependencies -->
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
<!-- MySql Library -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.12</version>
2015-07-28 17:26:16 +02:00
<scope>compile</scope>
2015-06-17 22:59:00 +02:00
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>2.4.0</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</exclusion>
</exclusions>
</dependency>
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
<!-- SQLite Library -->
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
2015-08-02 01:43:19 +02:00
<version>3.8.11</version>
2015-07-28 17:26:16 +02:00
<scope>compile</scope>
2015-06-17 22:59:00 +02:00
</dependency>
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
<!-- Java Email API -->
<dependency>
2015-07-29 21:48:59 +02:00
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
2015-07-05 04:31:05 +02:00
<version>1.5.4</version>
2015-07-28 17:26:16 +02:00
<scope>compile</scope>
2015-06-17 22:59:00 +02:00
</dependency>
2015-06-30 14:39:07 +02:00
2015-07-29 21:48:59 +02:00
2015-06-21 20:28:08 +02:00
<!-- Maxmind GeoIp API -->
<dependency>
<groupId>com.maxmind.geoip</groupId>
<artifactId>geoip-api</artifactId>
2015-07-31 02:11:29 +02:00
<version>1.2.15</version>
2015-07-28 17:26:16 +02:00
<scope>compile</scope>
2015-06-21 20:28:08 +02:00
</dependency>
2015-06-30 14:39:07 +02:00
2015-08-01 03:45:41 +02:00
<!-- Metrics API -->
2015-07-06 15:43:30 +02:00
<dependency>
2015-07-06 15:47:09 +02:00
<groupId>org.mcstats.bukkit</groupId>
2015-07-06 23:09:35 +02:00
<artifactId>metrics</artifactId>
2015-08-01 03:30:42 +02:00
<version>R8-SNAPSHOT</version>
2015-07-06 15:43:30 +02:00
<scope>compile</scope>
2015-07-06 16:09:56 +02:00
<exclusions>
<exclusion>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
</exclusion>
<exclusion>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
</exclusion>
</exclusions>
2015-07-06 15:43:30 +02:00
</dependency>
2015-06-17 22:59:00 +02:00
<!-- Spigot-Api, http://www.spigotmc.org/ Based on the Bukkit project,
http://bukkit.org/ -->
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>${bukkitVersion}</version>
2015-07-28 17:26:16 +02:00
<scope>provided</scope>
2015-07-12 22:31:05 +02:00
<exclusions>
<exclusion>
<artifactId>bungeecord-chat</artifactId>
<groupId>net.md-5</groupId>
</exclusion>
</exclusions>
2015-06-22 13:01:26 +02:00
</dependency>
2015-06-30 14:39:07 +02:00
2015-07-05 04:31:05 +02:00
<!-- Attribute -->
2015-06-22 13:01:26 +02:00
<dependency>
<groupId>com.comphenix.attribute</groupId>
<artifactId>AttributeStorage</artifactId>
<version>0.0.2-SNAPSHOT</version>
2015-07-28 17:26:16 +02:00
<scope>compile</scope>
2015-06-22 13:01:26 +02:00
<exclusions>
<exclusion>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
</exclusion>
2015-06-22 13:16:48 +02:00
<exclusion>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
</exclusion>
2015-07-05 04:31:05 +02:00
</exclusions>
2015-06-17 22:59:00 +02:00
</dependency>
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
<!-- Vault, http://dev.bukkit.org/bukkit-plugins/vault/ -->
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.5</version>
2015-07-10 12:10:33 +02:00
<scope>provided</scope>
2015-06-21 20:28:08 +02:00
<exclusions>
<exclusion>
2015-06-22 13:01:26 +02:00
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
2015-06-21 20:28:08 +02:00
</exclusion>
2015-06-22 13:16:48 +02:00
<exclusion>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
</exclusion>
2015-07-05 04:31:05 +02:00
</exclusions>
2015-06-17 22:59:00 +02:00
</dependency>
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
<!-- Citizens 2.X, NPC plugin, http://dev.bukkit.org/bukkit-plugins/citizens/ -->
<dependency>
<groupId>net.citizensnpcs</groupId>
<artifactId>citizensapi</artifactId>
<version>2.0.16-SNAPSHOT</version>
2015-07-28 17:26:16 +02:00
<scope>provided</scope>
2015-06-21 20:28:08 +02:00
<exclusions>
<exclusion>
2015-06-22 13:01:26 +02:00
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
2015-06-21 21:13:23 +02:00
</exclusion>
2015-06-22 13:16:48 +02:00
<exclusion>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
</exclusion>
2015-07-05 04:31:05 +02:00
</exclusions>
2015-06-17 22:59:00 +02:00
</dependency>
2015-06-30 14:39:07 +02:00
2015-06-17 23:07:07 +02:00
<!-- Multi World plugin, http://www.spigotmc.org/resources/multiverse-core.390/ -->
<dependency>
<groupId>com.onarandombox.multiversecore</groupId>
<artifactId>Multiverse-Core</artifactId>
<version>2.5</version>
<type>jar</type>
2015-07-28 17:26:16 +02:00
<scope>provided</scope>
2015-06-21 20:28:08 +02:00
<exclusions>
<exclusion>
2015-06-22 13:01:26 +02:00
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
2015-06-21 21:13:23 +02:00
</exclusion>
2015-06-22 13:16:48 +02:00
<exclusion>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
</exclusion>
2015-07-12 22:31:05 +02:00
<exclusion>
<artifactId>AllPay</artifactId>
<groupId>com.fernferret.allpay</groupId>
</exclusion>
<exclusion>
<artifactId>Vault</artifactId>
<groupId>net.milkbowl.vault</groupId>
</exclusion>
<exclusion>
<artifactId>CommandHandler</artifactId>
<groupId>com.pneumaticraft.commandhandler</groupId>
</exclusion>
2015-07-05 04:31:05 +02:00
</exclusions>
</dependency>
2015-06-30 14:39:07 +02:00
<!-- Essentials plugin -->
2015-06-17 22:59:00 +02:00
<dependency>
<groupId>net.ess3</groupId>
<artifactId>Essentials</artifactId>
2015-07-10 12:10:33 +02:00
<version>2.14-SNAPSHOT</version>
2015-07-28 17:26:16 +02:00
<scope>provided</scope>
2015-06-21 20:28:08 +02:00
<exclusions>
<exclusion>
2015-06-22 13:01:26 +02:00
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
2015-06-21 21:13:23 +02:00
</exclusion>
2015-06-22 13:16:48 +02:00
<exclusion>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
</exclusion>
2015-07-05 04:31:05 +02:00
</exclusions>
2015-06-17 22:59:00 +02:00
</dependency>
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
<!-- Anti PvPLogging plugin, https://github.com/MinelinkNetwork/CombatTagPlus -->
<dependency>
<groupId>net.minelink</groupId>
<artifactId>CombatTagPlus</artifactId>
<version>1.2.1-SNAPSHOT</version>
2015-07-28 17:26:16 +02:00
<scope>provided</scope>
2015-06-21 20:28:08 +02:00
<exclusions>
<exclusion>
2015-06-22 13:01:26 +02:00
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
2015-06-21 20:28:08 +02:00
</exclusion>
2015-06-22 13:16:48 +02:00
<exclusion>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
</exclusion>
2015-07-12 22:31:05 +02:00
<exclusion>
<artifactId>CombatTagPlusHook</artifactId>
<groupId>net.minelink</groupId>
</exclusion>
<exclusion>
<artifactId>CombatTagPlusFactions-v1_6</artifactId>
<groupId>net.minelink</groupId>
</exclusion>
<exclusion>
<artifactId>CombatTagPlusCompat-v1_7_R3</artifactId>
<groupId>net.minelink</groupId>
</exclusion>
<exclusion>
<artifactId>CombatTagPlusFactions-v1_8</artifactId>
<groupId>net.minelink</groupId>
</exclusion>
<exclusion>
<artifactId>CombatTagPlusCompat-v1_7_R4</artifactId>
<groupId>net.minelink</groupId>
</exclusion>
<exclusion>
<artifactId>CombatTagPlusWG-v5</artifactId>
<groupId>net.minelink</groupId>
</exclusion>
<exclusion>
<artifactId>CombatTagPlusWG-v6</artifactId>
<groupId>net.minelink</groupId>
</exclusion>
<exclusion>
<artifactId>CombatTagPlusCompat-API</artifactId>
<groupId>net.minelink</groupId>
</exclusion>
<exclusion>
<artifactId>CombatTagPlusFactions-v2_6</artifactId>
<groupId>net.minelink</groupId>
</exclusion>
<exclusion>
<artifactId>CombatTagPlusCompat-v1_8_R3</artifactId>
<groupId>net.minelink</groupId>
</exclusion>
<exclusion>
<artifactId>CombatTagPlusFactions-v2_7</artifactId>
<groupId>net.minelink</groupId>
</exclusion>
<exclusion>
<artifactId>CombatTagPlusCompat-v1_8_R2</artifactId>
<groupId>net.minelink</groupId>
</exclusion>
<exclusion>
<artifactId>CombatTagPlusCompat-v1_8_R1</artifactId>
<groupId>net.minelink</groupId>
</exclusion>
<exclusion>
<artifactId>metrics-lite</artifactId>
<groupId>org.mcstats.bukkit</groupId>
</exclusion>
2015-07-05 04:31:05 +02:00
</exclusions>
2015-06-17 22:59:00 +02:00
</dependency>
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
<!-- Anti PvPLogging plugin, http://www.spigotmc.org/resources/combat-tag.3182/ -->
<dependency>
<groupId>com.trc202</groupId>
2015-06-30 15:15:49 +02:00
<artifactId>CombatTag</artifactId>
<version>6.2.1-SNAPSHOT</version>
2015-07-28 17:26:16 +02:00
<scope>provided</scope>
2015-06-21 20:28:08 +02:00
<exclusions>
<exclusion>
2015-06-22 13:01:26 +02:00
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
2015-06-21 20:28:08 +02:00
</exclusion>
2015-06-22 13:16:48 +02:00
<exclusion>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
</exclusion>
2015-07-05 04:31:05 +02:00
</exclusions>
2015-06-17 22:59:00 +02:00
</dependency>
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
<!-- XAuth, another authentication plugin, required by the database converter -->
<dependency>
<groupId>de.luricos.bukkit</groupId>
<artifactId>xAuth</artifactId>
<version>2.6</version>
2015-07-28 17:26:16 +02:00
<scope>provided</scope>
2015-06-21 20:28:08 +02:00
<exclusions>
<exclusion>
2015-06-22 13:01:26 +02:00
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
2015-06-21 20:28:08 +02:00
</exclusion>
2015-06-22 13:16:48 +02:00
<exclusion>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
</exclusion>
2015-07-12 22:31:05 +02:00
<exclusion>
<artifactId>updater</artifactId>
<groupId>net.gravitydevelopment.updater</groupId>
</exclusion>
<exclusion>
<artifactId>lombok</artifactId>
<groupId>org.projectlombok</groupId>
</exclusion>
<exclusion>
<artifactId>EssentialsGroupManager</artifactId>
<groupId>net.ess3</groupId>
</exclusion>
<exclusion>
<artifactId>PermissionsEx</artifactId>
<groupId>ru.tehkode</groupId>
</exclusion>
<exclusion>
<artifactId>AccountsClient</artifactId>
<groupId>com.mojang</groupId>
</exclusion>
2015-07-05 04:31:05 +02:00
</exclusions>
2015-06-17 22:59:00 +02:00
</dependency>
2015-06-30 14:39:07 +02:00
2015-07-12 22:31:05 +02:00
<!-- ChestShop, on our maven repo http://dev.bukkit.org/bukkit-plugins/chestshop/ -->
2015-06-17 22:59:00 +02:00
<dependency>
2015-07-12 22:17:08 +02:00
<groupId>com.acrobot.chestshop</groupId>
<artifactId>chestshop</artifactId>
2015-07-12 20:46:39 +02:00
<version>3.8.12</version>
2015-07-28 17:26:16 +02:00
<scope>provided</scope>
2015-07-12 20:46:39 +02:00
<exclusions>
<exclusion>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
</exclusion>
<exclusion>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
</exclusion>
2015-07-12 22:31:05 +02:00
<exclusion>
<artifactId>Vault</artifactId>
<groupId>net.milkbowl.vault</groupId>
</exclusion>
<exclusion>
<artifactId>odditem</artifactId>
<groupId>info.somethingodd</groupId>
</exclusion>
<exclusion>
<artifactId>scrollingmenusign</artifactId>
<groupId>me.desht</groupId>
</exclusion>
<exclusion>
<artifactId>truezip</artifactId>
<groupId>de.schlichtherle</groupId>
</exclusion>
<exclusion>
<artifactId>residence</artifactId>
<groupId>net.t00thpick1</groupId>
</exclusion>
<exclusion>
<artifactId>Heroes</artifactId>
<groupId>com.herocraftonline.heroes</groupId>
</exclusion>
<exclusion>
<artifactId>HeroChat</artifactId>
<groupId>com.dthielke.herochat</groupId>
</exclusion>
<exclusion>
<artifactId>worldguard</artifactId>
<groupId>com.sk89q</groupId>
</exclusion>
<exclusion>
<artifactId>worldedit</artifactId>
<groupId>com.sk89q</groupId>
</exclusion>
<exclusion>
<artifactId>lwc</artifactId>
<groupId>com.griefcraft.lwc</groupId>
</exclusion>
<exclusion>
<artifactId>js</artifactId>
<groupId>rhino</groupId>
</exclusion>
<exclusion>
<artifactId>jchronic</artifactId>
<groupId>com.sk89q</groupId>
</exclusion>
<exclusion>
<artifactId>deadbolt</artifactId>
<groupId>com.daemitus.deadbolt</groupId>
</exclusion>
<exclusion>
<artifactId>bukkit-classloader-check</artifactId>
<groupId>com.sk89q.spigot</groupId>
</exclusion>
<exclusion>
<artifactId>jsr305</artifactId>
<groupId>com.google.code.findbugs</groupId>
</exclusion>
<exclusion>
<artifactId>opencsv</artifactId>
<groupId>net.sf.opencsv</groupId>
</exclusion>
<exclusion>
<artifactId>simplechestlock</artifactId>
<groupId>
com.webkonsept.bukkit.simplechestlock
</groupId>
</exclusion>
<exclusion>
<artifactId>commandbook</artifactId>
<groupId>com.sk89q</groupId>
</exclusion>
<exclusion>
<artifactId>lockette</artifactId>
<groupId>org.yi.acru.bukkit.lockette</groupId>
</exclusion>
2015-07-12 20:46:39 +02:00
</exclusions>
2015-06-17 22:59:00 +02:00
</dependency>
2015-06-30 14:39:07 +02:00
2015-06-17 22:59:00 +02:00
</dependencies>
2015-06-17 14:09:40 +02:00
</project>