mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-03 09:10:01 +01:00
571 lines
15 KiB
XML
571 lines
15 KiB
XML
<?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>fr.xephi</groupId>
|
|
<artifactId>authme</artifactId>
|
|
<version>5.0-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>AuthMeReloaded</name>
|
|
<description>Authentication plugin for CraftBukkit/Spigot!</description>
|
|
<url>http://dev.bukkit.org/bukkit-plugins/authme-reloaded/</url>
|
|
|
|
<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.7-R0.1-SNAPSHOT</bukkitVersion>
|
|
</properties>
|
|
|
|
<!-- Official Build Server -->
|
|
<ciManagement>
|
|
<system>jenkins</system>
|
|
<url>http://ci.xephi.fr/job/AuthMeReloaded/</url>
|
|
</ciManagement>
|
|
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/Xephi/AuthMeReloaded/issues</url>
|
|
</issueManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<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>
|
|
<plugin>
|
|
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
|
<artifactId>replacer</artifactId>
|
|
<version>1.5.3</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>prepare-package</phase>
|
|
<goals>
|
|
<goal>replace</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<file>target/classes/plugin.yml</file>
|
|
<replacements>
|
|
<replacement>
|
|
<token>maven-version</token>
|
|
<value>${project.version}</value>
|
|
</replacement>
|
|
</replacements>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.6</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifestFile>${manifest.file}</manifestFile>
|
|
</archive>
|
|
<finalName>AuthMe-${project.version}</finalName>
|
|
</configuration>
|
|
</plugin>
|
|
<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>javax.mail:*</include>
|
|
<include>com.sun.mail:*</include>
|
|
<include>com.comphenix.attribute:*</include>
|
|
<include>org.mcstats.*:*</include>
|
|
</includes>
|
|
</artifactSet>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>org.mcstats</pattern>
|
|
<shadedPattern>fr.xephi.authme</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<!-- SpigotMC Repo (Bukkit and SpigotAPI) -->
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public</url>
|
|
</repository>
|
|
|
|
<!-- Essentials Repo -->
|
|
<repository>
|
|
<id>ess-repo</id>
|
|
<url>http://repo.ess3.net/content/groups/public</url>
|
|
</repository>
|
|
|
|
<!-- Citizens API 2.X Repo -->
|
|
<repository>
|
|
<id>citizensapi-repo</id>
|
|
<url>http://ci.citizensnpcs.co/plugin/repository/project/CitizensAPI/LastSuccessful/repository</url>
|
|
</repository>
|
|
|
|
<!-- CombatTagPlus Repo -->
|
|
<repository>
|
|
<id>minelink-thirdparty</id>
|
|
<url>http://repo.minelink.net/content/repositories/public</url>
|
|
</repository>
|
|
|
|
<!-- Attribute Repo -->
|
|
<repository>
|
|
<id>comphenix-snapshots</id>
|
|
<url>http://repo.comphenix.net/content/repositories/public</url>
|
|
</repository>
|
|
|
|
<!-- Multiverse Repo -->
|
|
<repository>
|
|
<id>onarandombox</id>
|
|
<url>http://repo.onarandombox.com/content/groups/public</url>
|
|
</repository>
|
|
|
|
<!-- 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>
|
|
<url>http://repo.luricos.de/content/repositories/releases</url>
|
|
</repository>
|
|
|
|
<!-- Xephi Repo (ChestShop) -->
|
|
<repository>
|
|
<id>xephi-repo</id>
|
|
<url>http://ci.xephi.fr/plugin/repository/everything/</url>
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<!-- Maven Dependencies -->
|
|
|
|
<!-- MySql Library -->
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>5.1.36</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- SQLite Library -->
|
|
<dependency>
|
|
<groupId>org.xerial</groupId>
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
<version>3.8.10.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- Java Email API -->
|
|
<dependency>
|
|
<groupId>javax.mail</groupId>
|
|
<artifactId>javax.mail-api</artifactId>
|
|
<version>1.5.4</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!-- Maxmind GeoIp API -->
|
|
<dependency>
|
|
<groupId>com.maxmind.geoip</groupId>
|
|
<artifactId>geoip-api</artifactId>
|
|
<version>1.2.14</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.mcstats.bukkit</groupId>
|
|
<artifactId>metrics</artifactId>
|
|
<version>R7</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- 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>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>bungeecord-chat</artifactId>
|
|
<groupId>net.md-5</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- Attribute -->
|
|
<dependency>
|
|
<groupId>com.comphenix.attribute</groupId>
|
|
<artifactId>AttributeStorage</artifactId>
|
|
<version>0.0.2-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- Vault, http://dev.bukkit.org/bukkit-plugins/vault/ -->
|
|
<dependency>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>VaultAPI</artifactId>
|
|
<version>1.5</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- 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>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- 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>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
</exclusion>
|
|
<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>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- Essentials plugin -->
|
|
<dependency>
|
|
<groupId>net.ess3</groupId>
|
|
<artifactId>Essentials</artifactId>
|
|
<version>2.14-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- Anti PvPLogging plugin, https://github.com/MinelinkNetwork/CombatTagPlus -->
|
|
<dependency>
|
|
<groupId>net.minelink</groupId>
|
|
<artifactId>CombatTagPlus</artifactId>
|
|
<version>1.2.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
</exclusion>
|
|
<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>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- Anti PvPLogging plugin, http://www.spigotmc.org/resources/combat-tag.3182/ -->
|
|
<dependency>
|
|
<groupId>com.trc202</groupId>
|
|
<artifactId>CombatTag</artifactId>
|
|
<version>6.2.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- XAuth, another authentication plugin, required by the database converter -->
|
|
<dependency>
|
|
<groupId>de.luricos.bukkit</groupId>
|
|
<artifactId>xAuth</artifactId>
|
|
<version>2.6</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
</exclusion>
|
|
<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>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- ChestShop, on our maven repo http://dev.bukkit.org/bukkit-plugins/chestshop/ -->
|
|
<dependency>
|
|
<groupId>com.acrobot.chestshop</groupId>
|
|
<artifactId>chestshop</artifactId>
|
|
<version>3.8.12</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
</exclusion>
|
|
<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>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|