Files
FastLogin/bungee/pom.xml

101 lines
3.6 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<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.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>
<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>
2016-03-20 12:49:24 +01:00
<repository>
<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>
2017-09-22 21:41:24 +02:00
<repository>
<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>
<!--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>
<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
<!--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>
2018-02-05 10:26:40 +01:00
<scope>provided</scope>
<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>