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"
|
|
|
|
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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.github.games647</groupId>
|
|
|
|
<artifactId>fastlogin</artifactId>
|
2017-09-03 20:06:00 +02:00
|
|
|
<version>1.11</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>
|
|
|
|
</repository>
|
2018-03-02 19:42:20 +01:00
|
|
|
|
|
|
|
<repository>
|
|
|
|
<id>codemc-repo</id>
|
|
|
|
<url>https://repo.codemc.org/repository/maven-public/</url>
|
|
|
|
</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>
|
2018-03-09 13:57:51 +01:00
|
|
|
<version>2.7.8</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>
|
2017-09-08 10:53:31 +02:00
|
|
|
<version>1.7.25</version>
|
2016-05-26 11:03:56 +02:00
|
|
|
</dependency>
|
2017-01-21 18:02:45 +01:00
|
|
|
|
2018-02-05 10:26:40 +01:00
|
|
|
<!--GSON is not at the right position for Minecraft 1.7-->
|
2018-01-30 13:15:43 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.2.4</version>
|
|
|
|
</dependency>
|
|
|
|
|
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-02 19:42:20 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.games647</groupId>
|
|
|
|
<artifactId>craftapi</artifactId>
|
|
|
|
<version>0.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2017-09-22 19:47:10 +02:00
|
|
|
<!-- APIs we can use because they are available in all platforms (Spigot, Bungee, Cauldron) -->
|
2016-09-11 21:26:03 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
2017-09-22 19:47:10 +02:00
|
|
|
<!-- The Uranium project (fork of Cauldron) uses 17.0 like Spigot 1.8 as experimental feature -->
|
|
|
|
<!-- Project url: https://github.com/UraniumMC/Uranium -->
|
2016-09-19 17:59:45 +02:00
|
|
|
<version>10.0.1</version>
|
2016-09-11 21:26:03 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-05-26 11:03:56 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|