2015-11-14 20:03:24 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2020-03-03 10:50:48 +01:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2015-11-14 20:03:24 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.github.games647</groupId>
|
2016-05-03 16:55:08 +02:00
|
|
|
<artifactId>fastlogin</artifactId>
|
2018-03-31 10:38:39 +02:00
|
|
|
<version>1.11-SNAPSHOT</version>
|
2015-11-14 20:03:24 +01:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<!--This have to be in lowercase because it's used by plugin.yml-->
|
|
|
|
<artifactId>fastlogin.bukkit</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>FastLoginBukkit</name>
|
|
|
|
|
2018-02-16 12:08:29 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2020-04-20 16:13:44 +00:00
|
|
|
<version>3.2.3</version>
|
2018-02-16 12:08:29 +01:00
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.zaxxer.hikari</pattern>
|
2018-02-19 09:03:53 +01:00
|
|
|
<shadedPattern>fastlogin.hikari</shadedPattern>
|
2018-02-16 12:08:29 +01:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.slf4j</pattern>
|
2018-02-19 09:03:53 +01:00
|
|
|
<shadedPattern>fastlogin.slf4j</shadedPattern>
|
2018-02-16 12:08:29 +01:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>net.md_5.bungee.config</pattern>
|
2018-02-19 09:03:53 +01:00
|
|
|
<shadedPattern>fastlogin.config</shadedPattern>
|
2018-02-16 12:08:29 +01:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.google.gson</pattern>
|
2018-02-19 09:03:53 +01:00
|
|
|
<shadedPattern>fastlogin.gson</shadedPattern>
|
2018-02-16 12:08:29 +01:00
|
|
|
</relocation>
|
2021-02-09 00:28:05 +01:00
|
|
|
<relocation>
|
|
|
|
<pattern>io.papermc.lib</pattern>
|
|
|
|
<shadedPattern>fastlogin.paperlib</shadedPattern>
|
|
|
|
</relocation>
|
2018-02-16 12:08:29 +01:00
|
|
|
</relocations>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2015-11-14 20:03:24 +01:00
|
|
|
<repositories>
|
2021-02-09 00:28:05 +01:00
|
|
|
<!-- PaperSpigot API and PaperLib -->
|
2015-11-14 20:03:24 +01:00
|
|
|
<repository>
|
2021-02-09 00:28:05 +01:00
|
|
|
<id>papermc</id>
|
|
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
2015-11-14 20:03:24 +01:00
|
|
|
</repository>
|
|
|
|
|
2019-05-06 17:39:21 +02:00
|
|
|
<!-- ProtocolLib -->
|
2015-11-14 20:03:24 +01:00
|
|
|
<repository>
|
|
|
|
<id>dmulloy2-repo</id>
|
2020-02-11 00:23:00 -05:00
|
|
|
<url>https://repo.dmulloy2.net/nexus/repository/public/</url>
|
2020-03-03 10:50:48 +01:00
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
2015-11-14 20:03:24 +01:00
|
|
|
</repository>
|
|
|
|
|
2019-05-06 17:39:21 +02:00
|
|
|
<!-- AuthMe Reloaded, xAuth and LoginSecurity -->
|
2015-11-14 20:03:24 +01:00
|
|
|
<repository>
|
2020-03-03 10:50:48 +01:00
|
|
|
<id>codemc-releases</id>
|
|
|
|
<url>https://repo.codemc.io/repository/maven-public/</url>
|
2015-11-14 20:03:24 +01:00
|
|
|
</repository>
|
|
|
|
|
2019-05-06 17:39:21 +02:00
|
|
|
<!-- GitHub automatic maven builds -->
|
2016-02-07 14:39:59 +01:00
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
2020-03-03 10:50:48 +01:00
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
2016-02-07 14:39:59 +01:00
|
|
|
</repository>
|
2018-02-16 12:08:29 +01:00
|
|
|
|
2019-05-06 17:39:21 +02:00
|
|
|
<!-- PlaceholderAPI -->
|
2017-01-06 12:54:02 +01:00
|
|
|
<repository>
|
|
|
|
<id>placeholderapi</id>
|
2020-03-03 10:50:48 +01:00
|
|
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
2017-01-06 12:54:02 +01:00
|
|
|
</repository>
|
2015-11-14 20:03:24 +01:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
2018-03-31 10:34:26 +02:00
|
|
|
<!--Common plugin component-->
|
2016-05-26 11:03:56 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.games647</groupId>
|
|
|
|
<artifactId>fastlogin.core</artifactId>
|
2018-03-13 14:21:24 +01:00
|
|
|
<version>${project.version}</version>
|
2016-05-26 11:03:56 +02:00
|
|
|
</dependency>
|
|
|
|
|
2021-02-09 00:28:05 +01:00
|
|
|
<!-- PaperSpigot API for correcting usercache usage -->
|
2015-11-14 20:03:24 +01:00
|
|
|
<dependency>
|
2021-02-09 00:28:05 +01:00
|
|
|
<groupId>com.destroystokyo.paper</groupId>
|
|
|
|
<artifactId>paper-api</artifactId>
|
2020-02-08 15:24:34 +01:00
|
|
|
<version>1.15.2-R0.1-SNAPSHOT</version>
|
2015-11-14 20:03:24 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2021-02-09 00:28:05 +01:00
|
|
|
<!-- PaperLib for checking if server uses PaperSpigot -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.papermc</groupId>
|
|
|
|
<artifactId>paperlib</artifactId>
|
|
|
|
<version>1.0.6</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2015-11-14 20:03:24 +01:00
|
|
|
<!--Library for listening and sending Minecraft packets-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib</artifactId>
|
2020-11-04 11:05:34 +01:00
|
|
|
<version>4.5.1</version>
|
2018-02-05 10:26:40 +01:00
|
|
|
<scope>provided</scope>
|
2015-11-14 20:03:24 +01:00
|
|
|
</dependency>
|
|
|
|
|
2018-03-31 10:34:26 +02:00
|
|
|
<!--Changing onlinemode on login process-->
|
2017-01-06 12:54:02 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.ProtocolSupport</groupId>
|
|
|
|
<artifactId>ProtocolSupport</artifactId>
|
2019-11-09 13:57:12 +01:00
|
|
|
<!--4.29.dev after commit about API improvements-->
|
|
|
|
<version>3a80c661fe</version>
|
2018-02-05 10:26:40 +01:00
|
|
|
<scope>provided</scope>
|
2017-01-06 12:54:02 +01:00
|
|
|
</dependency>
|
|
|
|
|
2018-03-31 10:34:26 +02:00
|
|
|
<!--Provide premium placeholders-->
|
2017-01-06 12:54:02 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
2020-08-03 11:20:12 +02:00
|
|
|
<version>2.10.8</version>
|
2017-01-06 12:54:02 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2016-01-24 11:50:49 +01:00
|
|
|
|
2015-11-14 20:03:24 +01:00
|
|
|
<!--Login Plugins-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>fr.xephi</groupId>
|
|
|
|
<artifactId>authme</artifactId>
|
2018-03-05 17:35:33 +01:00
|
|
|
<version>5.4.0</version>
|
2018-02-05 10:26:40 +01:00
|
|
|
<scope>provided</scope>
|
2015-11-14 20:03:24 +01:00
|
|
|
<optional>true</optional>
|
2016-03-04 13:34:02 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2015-11-14 20:03:24 +01:00
|
|
|
</dependency>
|
|
|
|
|
2016-06-18 14:39:47 +02:00
|
|
|
<dependency>
|
2016-06-29 19:03:52 +02:00
|
|
|
<groupId>com.lenis0012.bukkit</groupId>
|
|
|
|
<artifactId>loginsecurity</artifactId>
|
2020-04-27 16:21:02 +00:00
|
|
|
<version>3.0.2</version>
|
2018-02-05 10:26:40 +01:00
|
|
|
<scope>provided</scope>
|
2016-09-11 21:26:03 +02:00
|
|
|
<optional>true</optional>
|
2016-06-18 14:39:47 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2017-01-06 12:54:02 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.games647</groupId>
|
|
|
|
<artifactId>LogIt</artifactId>
|
|
|
|
<version>9e3581db27</version>
|
2016-09-08 11:48:13 +02:00
|
|
|
<scope>provided</scope>
|
2018-02-05 10:26:40 +01:00
|
|
|
<optional>true</optional>
|
2016-05-22 13:59:41 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>*</groupId>
|
2016-03-04 13:34:02 +01:00
|
|
|
<artifactId>*</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-01-06 12:54:02 +01:00
|
|
|
</dependency>
|
2016-02-07 14:39:59 +01:00
|
|
|
|
2015-11-14 20:03:24 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>de.luricos.bukkit</groupId>
|
|
|
|
<artifactId>xAuth</artifactId>
|
|
|
|
<version>2.6</version>
|
2018-02-05 10:26:40 +01:00
|
|
|
<scope>provided</scope>
|
2015-11-14 20:03:24 +01:00
|
|
|
<optional>true</optional>
|
|
|
|
<!--These artifacts produce conflicts on downloading-->
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2016-03-04 13:34:02 +01:00
|
|
|
<groupId>*</groupId>
|
|
|
|
<artifactId>*</artifactId>
|
2015-11-14 20:03:24 +01:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--No maven repository :(-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.st_ddt.crazy</groupId>
|
|
|
|
<artifactId>CrazyCore</artifactId>
|
|
|
|
<version>10.7.7</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/lib/CrazyCore v10.7.7.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.st_ddt.crazy</groupId>
|
|
|
|
<artifactId>CrazyLogin</artifactId>
|
|
|
|
<version>7.23</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/lib/CrazyLogin v7.23.2.jar</systemPath>
|
|
|
|
</dependency>
|
2016-03-01 17:26:25 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>ultraauth</groupId>
|
|
|
|
<artifactId>ultraauth</artifactId>
|
|
|
|
<version>2.0.2</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
<scope>system</scope>
|
2016-09-18 10:38:05 +02:00
|
|
|
<systemPath>${project.basedir}/lib/UltraAuth v2.1.2.jar</systemPath>
|
2016-03-01 17:26:25 +01:00
|
|
|
</dependency>
|
2020-07-29 09:22:17 +08:00
|
|
|
|
|
|
|
<dependency>
|
2020-07-29 16:07:24 +08:00
|
|
|
<groupId>com.github.Mohist-Community.SodionAuth</groupId>
|
|
|
|
<artifactId>SodionAuth-Bukkit</artifactId>
|
|
|
|
<version>b74392aa34</version>
|
2020-07-29 16:11:41 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.github.Mohist-Community.SodionAuth</groupId>
|
|
|
|
<artifactId>SodionAuth-Libs</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2020-07-29 09:22:17 +08:00
|
|
|
<optional>true</optional>
|
2020-07-29 10:58:04 +08:00
|
|
|
<scope>provided</scope>
|
2020-07-29 09:22:17 +08:00
|
|
|
</dependency>
|
2015-11-14 20:03:24 +01:00
|
|
|
</dependencies>
|
|
|
|
</project>
|