mirror of
https://github.com/TuxCoding/FastLogin.git
synced 2026-01-26 17:12:25 +01:00
* Use https for maven repositories if possible * Fix typos * Merge ProtocolLib listeners into one class * Upgrade maven plugins and dependencies
60 lines
1.9 KiB
XML
60 lines
1.9 KiB
XML
<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>
|
|
<version>1.10</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<!--This have to be in lowercase because it's used by plugin.yml-->
|
|
<artifactId>fastlogin.bungee</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<!--Represents the main plugin-->
|
|
<name>FastLoginBungee</name>
|
|
|
|
<repositories>
|
|
<!--BungeeCord with also the part outside the API-->
|
|
<repository>
|
|
<id>luck-repo</id>
|
|
<url>https://ci.lucko.me/plugin/repository/everything</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>vik1395-repo</id>
|
|
<url>http://repo.vik1395.me/repositories</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>fastlogin.core</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.md-5</groupId>
|
|
<artifactId>bungeecord-proxy</artifactId>
|
|
<version>1.12-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>me.vik1395</groupId>
|
|
<artifactId>BungeeAuth</artifactId>
|
|
<version>1.4</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>*</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|