2016-05-26 11:03:56 +02: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">
|
2016-05-26 11:03:56 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.github.games647</groupId>
|
|
|
|
<artifactId>fastlogin</artifactId>
|
2018-03-31 10:38:39 +02:00
|
|
|
<version>1.11-SNAPSHOT</version>
|
2016-05-26 11:03:56 +02:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>fastlogin.core</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>FastLoginCore</name>
|
|
|
|
|
2017-09-22 19:47:10 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>luck-repo</id>
|
|
|
|
<url>https://ci.lucko.me/plugin/repository/everything</url>
|
2020-03-03 10:50:48 +01:00
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
2018-03-02 19:42:20 +01:00
|
|
|
<repository>
|
|
|
|
<id>codemc-repo</id>
|
2020-03-03 10:50:48 +01:00
|
|
|
<url>https://repo.codemc.io/repository/maven-public/</url>
|
2018-03-02 19:42:20 +01:00
|
|
|
</repository>
|
2017-09-22 19:47:10 +02:00
|
|
|
</repositories>
|
|
|
|
|
2016-05-26 11:03:56 +02:00
|
|
|
<dependencies>
|
2017-09-22 19:47:10 +02:00
|
|
|
<!-- Libraries that we shade into the project -->
|
|
|
|
|
2016-05-26 11:03:56 +02:00
|
|
|
<!--Database pooling-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
2021-02-01 16:25:09 +00:00
|
|
|
<version>4.0.1</version>
|
2016-05-26 11:03:56 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--Logging framework implements slf4j which is required by hikari-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-jdk14</artifactId>
|
2020-03-06 19:28:02 +01:00
|
|
|
<version>1.7.30</version>
|
2016-05-26 11:03:56 +02:00
|
|
|
</dependency>
|
2017-01-21 18:02:45 +01:00
|
|
|
|
2017-09-22 19:47:10 +02:00
|
|
|
<!-- snakeyaml is present in Bungee, Spigot, Cauldron and so we could use this independent implementation -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-config</artifactId>
|
|
|
|
<version>1.12-SNAPSHOT</version>
|
2018-02-16 12:08:29 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-09-22 19:47:10 +02:00
|
|
|
</dependency>
|
|
|
|
|
2018-03-31 10:34:26 +02:00
|
|
|
<!--Common component for contacting the Mojang API-->
|
2018-03-02 19:42:20 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.games647</groupId>
|
|
|
|
<artifactId>craftapi</artifactId>
|
2020-03-14 18:47:37 +01:00
|
|
|
<version>0.4</version>
|
2018-03-02 19:42:20 +01:00
|
|
|
</dependency>
|
|
|
|
|
2020-03-14 18:47:37 +01:00
|
|
|
<!-- APIs we can use because they are available in all platforms (Spigot, Bungee) -->
|
2016-09-11 21:26:03 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2020-03-14 18:47:37 +01:00
|
|
|
<version>17.0</version>
|
2016-09-11 21:26:03 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2020-03-14 18:47:37 +01:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.2.4</version>
|
|
|
|
</dependency>
|
2016-05-26 11:03:56 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|