2015-11-13 22:46:38 +01: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-11-14 20:03:24 +01:00
|
|
|
<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>
|
|
|
|
|
|
2015-11-13 22:46:38 +01:00
|
|
|
<!--This have to be in lowercase because it's used by plugin.yml-->
|
2015-11-14 20:03:24 +01:00
|
|
|
<artifactId>fastlogin.bungee</artifactId>
|
2015-11-13 22:46:38 +01:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
2015-11-14 20:03:24 +01:00
|
|
|
<!--Represents the main plugin-->
|
|
|
|
|
<name>FastLoginBungee</name>
|
2015-11-13 22:46:38 +01:00
|
|
|
|
2018-02-16 12:08:29 +01:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
<version>3.1.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
|
|
|
<artifactSet>
|
|
|
|
|
<excludes>
|
|
|
|
|
<!--Those classes are already present in BungeeCord version-->
|
|
|
|
|
<exclude>net.md-5:bungeecord-config</exclude>
|
|
|
|
|
<exclude>com.google.code.gson:gson</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</artifactSet>
|
|
|
|
|
<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>
|
|
|
|
|
</relocations>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>shade</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2015-11-13 22:46:38 +01:00
|
|
|
<repositories>
|
2016-03-20 12:49:24 +01:00
|
|
|
<repository>
|
2016-09-13 09:53:46 +02:00
|
|
|
<id>vik1395-repo</id>
|
2017-09-13 12:34:56 +02:00
|
|
|
<url>https://vik1395.github.io/repo.vik1395.me/repositories</url>
|
2016-03-20 12:49:24 +01:00
|
|
|
</repository>
|
2018-03-05 17:37:40 +01:00
|
|
|
|
2017-09-22 21:41:24 +02:00
|
|
|
<repository>
|
2018-03-05 17:37:40 +01:00
|
|
|
<id>codemc-repo</id>
|
|
|
|
|
<url>https://repo.codemc.org/repository/maven-public/</url>
|
2017-09-22 21:41:24 +02:00
|
|
|
</repository>
|
2015-11-13 22:46:38 +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>${project.groupId}</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>
|
|
|
|
|
|
2017-09-22 19:47:10 +02:00
|
|
|
<!--BungeeCord with also the part outside the API-->
|
2015-11-13 22:46:38 +01:00
|
|
|
<dependency>
|
2017-07-22 08:27:55 +02:00
|
|
|
<groupId>net.md-5</groupId>
|
2016-04-27 17:13:27 +02:00
|
|
|
<artifactId>bungeecord-proxy</artifactId>
|
2017-07-22 08:27:55 +02:00
|
|
|
<version>1.12-SNAPSHOT</version>
|
2015-11-13 22:46:38 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2016-03-20 12:49:24 +01:00
|
|
|
|
2018-03-31 10:34:26 +02:00
|
|
|
<!--Login plugin-->
|
2016-03-20 12:49:24 +01:00
|
|
|
<dependency>
|
2016-09-13 09:53:46 +02:00
|
|
|
<groupId>me.vik1395</groupId>
|
2016-03-20 12:49:24 +01:00
|
|
|
<artifactId>BungeeAuth</artifactId>
|
2016-10-05 10:06:02 +02:00
|
|
|
<version>1.4</version>
|
2018-02-05 10:26:40 +01:00
|
|
|
<scope>provided</scope>
|
2016-10-05 10:06:02 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>*</groupId>
|
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2016-03-20 12:49:24 +01:00
|
|
|
</dependency>
|
2015-11-13 22:46:38 +01:00
|
|
|
</dependencies>
|
|
|
|
|
</project>
|