Files
FastLogin/bungee/pom.xml

91 lines
3.3 KiB
XML
Raw Permalink Normal View History

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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
2015-11-13 22:46:38 +01:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.games647</groupId>
2016-05-03 16:55:08 +02:00
<artifactId>fastlogin</artifactId>
<version>1.11-SNAPSHOT</version>
<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-->
<artifactId>fastlogin.bungee</artifactId>
2015-11-13 22:46:38 +01:00
<packaging>jar</packaging>
<!--Represents the main plugin-->
<name>FastLoginBungee</name>
2015-11-13 22:46:38 +01:00
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.2</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>
<shadedPattern>fastlogin.hikari</shadedPattern>
</relocation>
<relocation>
<pattern>org.slf4j</pattern>
<shadedPattern>fastlogin.slf4j</shadedPattern>
</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>
2017-09-22 21:41:24 +02:00
<repository>
<id>codemc-repo</id>
<url>https://repo.codemc.io/repository/maven-public/</url>
2017-09-22 21:41:24 +02:00
</repository>
2015-11-13 22:46:38 +01:00
</repositories>
<dependencies>
<!--Common plugin component-->
2016-05-26 11:03:56 +02:00
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>fastlogin.core</artifactId>
<version>${project.version}</version>
2016-05-26 11:03:56 +02:00
</dependency>
<!--BungeeCord with also the part outside the API-->
2015-11-13 22:46:38 +01:00
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-proxy</artifactId>
2019-07-09 12:56:14 +02:00
<version>1.14-SNAPSHOT</version>
2015-11-13 22:46:38 +01:00
<scope>provided</scope>
</dependency>
2016-03-20 12:49:24 +01:00
<!--Login plugin-->
2016-03-20 12:49:24 +01:00
<dependency>
<groupId>me.vik1395</groupId>
2016-03-20 12:49:24 +01:00
<artifactId>BungeeAuth</artifactId>
<version>1.4</version>
2019-10-23 12:50:40 +02:00
<scope>system</scope>
<systemPath>${project.basedir}/lib/BungeeAuth-1.4.jar</systemPath>
2016-03-20 12:49:24 +01:00
</dependency>
2015-11-13 22:46:38 +01:00
</dependencies>
</project>