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-06-17 22:59:00 +02:00
|
|
|
<version>5.0-SNAPSHOT</version>
|
2015-06-30 14:39:07 +02:00
|
|
|
|
2015-06-17 22:59:00 +02:00
|
|
|
<name>AuthMeReloaded</name>
|
|
|
|
<description>Authentication plugin for CraftBukkit/Spigot!</description>
|
|
|
|
<url>http://dev.bukkit.org/bukkit-plugins/authme-reloaded/</url>
|
2015-06-30 14:39:07 +02:00
|
|
|
|
2015-06-17 22:59:00 +02:00
|
|
|
<packaging>jar</packaging>
|
2015-06-30 14:39:07 +02:00
|
|
|
|
2015-06-17 22:59:00 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2015-06-30 14:39:07 +02:00
|
|
|
|
2015-06-17 22:59:00 +02:00
|
|
|
<!-- Change Compiler Version (JDK) HERE! -->
|
|
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
2015-06-30 14:39:07 +02:00
|
|
|
|
2015-06-17 22:59:00 +02:00
|
|
|
<!-- Change MC Version HERE! -->
|
|
|
|
<bukkitVersion>1.8.7-R0.1-SNAPSHOT</bukkitVersion>
|
|
|
|
</properties>
|
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-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-07-06 22:10:32 +02:00
|
|
|
<finalName>AuthMe-${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>
|
|
|
|
<version>2.3</version>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>com.maxmind.geoip:*</include>
|
|
|
|
<include>com.sun.mail:*</include>
|
|
|
|
<include>javax.mail:*</include>
|
|
|
|
<include>com.comphenix.attribute:*</include>
|
2015-07-06 15:43:30 +02:00
|
|
|
<include>org.mcstats.*:*</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-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 -->
|
2015-07-01 15:47:07 +02:00
|
|
|
<repository>
|
2015-07-10 16:07:02 +02:00
|
|
|
<id>citizensapi-repo</id>
|
|
|
|
<url>http://ci.citizensnpcs.co/plugin/repository/project/CitizensAPI/LastSuccessful/repository/</url>
|
2015-07-01 15:47:07 +02:00
|
|
|
</repository>
|
2015-06-30 14:39:07 +02:00
|
|
|
|
2015-06-17 22:59:00 +02:00
|
|
|
<!-- CombatTagPlus Repo -->
|
2015-07-01 15:47:07 +02:00
|
|
|
<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-09 10:54:13 +02:00
|
|
|
<url>http://repo.comphenix.net/content/repositories/snapshots</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>
|
|
|
|
|
|
|
|
<!-- Mcstats.org Metrics Repo -->
|
|
|
|
<repository>
|
|
|
|
<id>Plugin Metrics</id>
|
|
|
|
<url>http://repo.mcstats.org/content/repositories/releases</url>
|
|
|
|
</repository>
|
|
|
|
|
|
|
|
<!-- XAuth Repo -->
|
|
|
|
<repository>
|
|
|
|
<id>luricos-releases</id>
|
|
|
|
<url>http://repo.luricos.de/content/repositories/bukkit-plugins</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>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>5.1.35</version>
|
|
|
|
</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>
|
|
|
|
<version>3.8.10.1</version>
|
|
|
|
</dependency>
|
2015-06-30 14:39:07 +02:00
|
|
|
|
2015-06-17 22:59:00 +02:00
|
|
|
<!-- Java Email API -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
|
<artifactId>javax.mail</artifactId>
|
2015-07-05 04:31:05 +02:00
|
|
|
<version>1.5.4</version>
|
2015-06-17 22:59:00 +02:00
|
|
|
</dependency>
|
2015-06-30 14:39:07 +02:00
|
|
|
|
2015-06-21 20:28:08 +02:00
|
|
|
<!-- Maxmind GeoIp API -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.maxmind.geoip</groupId>
|
|
|
|
<artifactId>geoip-api</artifactId>
|
|
|
|
<version>1.2.14</version>
|
|
|
|
</dependency>
|
2015-06-30 14:39:07 +02:00
|
|
|
|
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-07-06 15:43:30 +02:00
|
|
|
<version>R7</version>
|
|
|
|
<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-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>
|
|
|
|
<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>
|
2015-07-01 15:47:07 +02:00
|
|
|
<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-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>
|
2015-06-21 13:45:26 +02:00
|
|
|
<groupId>com.onarandombox.multiversecore</groupId>
|
|
|
|
<artifactId>Multiverse-Core</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<type>jar</type>
|
2015-06-22 14:52:54 +02:00
|
|
|
<scope>compile</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-21 13:45:26 +02:00
|
|
|
</dependency>
|
2015-06-30 14:39:07 +02:00
|
|
|
|
2015-06-21 13:45:26 +02:00
|
|
|
<!-- Essentials plugin -->
|
2015-06-17 22:59:00 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.ess3</groupId>
|
2015-06-17 23:52:15 +02:00
|
|
|
<artifactId>Essentials</artifactId>
|
2015-07-10 12:10:33 +02:00
|
|
|
<version>2.14-SNAPSHOT</version>
|
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-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
|
|
|
<!-- 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-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-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
|
|
|
<!-- Local Dependencies -->
|
2015-07-05 04:31:05 +02:00
|
|
|
|
2015-06-17 22:59:00 +02:00
|
|
|
<!-- It doesn't have a Maven Repo, http://dev.bukkit.org/bukkit-plugins/chestshop/ -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.Acrobot</groupId>
|
|
|
|
<artifactId>ChestShop</artifactId>
|
|
|
|
<version>3.8.10</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/libs/ChestShop.jar</systemPath>
|
|
|
|
</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>
|