186 lines
6.7 KiB
XML
186 lines
6.7 KiB
XML
|
<!--
|
||
|
|
||
|
SPDX-License-Identifier: MIT
|
||
|
|
||
|
The MIT License (MIT)
|
||
|
|
||
|
Copyright (c) 2015-2021 <Your name and contributors>
|
||
|
|
||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
|
of this software and associated documentation files (the "Software"), to deal
|
||
|
in the Software without restriction, including without limitation the rights
|
||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
|
copies of the Software, and to permit persons to whom the Software is
|
||
|
furnished to do so, subject to the following conditions:
|
||
|
|
||
|
The above copyright notice and this permission notice shall be included in all
|
||
|
copies or substantial portions of the Software.
|
||
|
|
||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||
|
SOFTWARE.
|
||
|
|
||
|
-->
|
||
|
<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">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>net.limework.forks.LimeLogin</groupId>
|
||
|
<artifactId>limelogin-parent</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
<relativePath>../pom.xml</relativePath>
|
||
|
</parent>
|
||
|
|
||
|
<!--This have to be in lowercase because it's used by plugin.yml-->
|
||
|
<artifactId>Limelogin.bungee</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<!--Represents the main plugin-->
|
||
|
<name>LimeLoginBungee</name>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>3.2.4</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>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>codemc-repo</id>
|
||
|
<url>https://repo.codemc.io/repository/maven-public/</url>
|
||
|
</repository>
|
||
|
|
||
|
<repository>
|
||
|
<id>opencollab-snapshot</id>
|
||
|
<url>https://repo.opencollab.dev/maven-snapshots/</url>
|
||
|
</repository>
|
||
|
|
||
|
<repository>
|
||
|
<id>spigotplugins-repo</id>
|
||
|
<url>https://maven.gamestrike.de/mvn/</url>
|
||
|
</repository>
|
||
|
|
||
|
<repository>
|
||
|
<id>jitpack.io</id>
|
||
|
<url>https://jitpack.io</url>
|
||
|
<snapshots>
|
||
|
<enabled>false</enabled>
|
||
|
</snapshots>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
<!--Common plugin component-->
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>limelogin.core</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!--BungeeCord with also the part outside the API-->
|
||
|
<dependency>
|
||
|
<groupId>net.md-5</groupId>
|
||
|
<artifactId>bungeecord-proxy</artifactId>
|
||
|
<version>1.16-R0.5-SNAPSHOT</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Bedrock player bridge -->
|
||
|
<!-- Should be removed one Floodgate 2.0 gets a stable release -->
|
||
|
<dependency>
|
||
|
<groupId>org.geysermc</groupId>
|
||
|
<artifactId>floodgate-bungee</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Bedrock player bridge -->
|
||
|
<!-- Version 2.0 -->
|
||
|
<dependency>
|
||
|
<groupId>org.geysermc.floodgate</groupId>
|
||
|
<artifactId>api</artifactId>
|
||
|
<version>2.0-SNAPSHOT</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<!--Login plugin-->
|
||
|
<dependency>
|
||
|
<groupId>me.vik1395</groupId>
|
||
|
<artifactId>BungeeAuth</artifactId>
|
||
|
<version>1.4</version>
|
||
|
<scope>system</scope>
|
||
|
<systemPath>${project.basedir}/lib/BungeeAuth-1.4.jar</systemPath>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>de.xxschrandxx.bca</groupId>
|
||
|
<artifactId>BungeeCordAuthenticator</artifactId>
|
||
|
<version>0.0.2</version>
|
||
|
<scope>provided</scope>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>*</groupId>
|
||
|
<artifactId>*</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.github.Mohist-Community.SodionAuth</groupId>
|
||
|
<artifactId>SodionAuth-Bungee</artifactId>
|
||
|
<version>2bdfdc854b</version>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>com.github.Mohist-Community.SodionAuth</groupId>
|
||
|
<artifactId>SodionAuth-Libs</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
<optional>true</optional>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.xerial</groupId>
|
||
|
<artifactId>sqlite-jdbc</artifactId>
|
||
|
<version>3.34.0</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|