mirror of
https://github.com/TuxCoding/FastLogin.git
synced 2026-01-25 16:42:32 +01:00
174 lines
6.0 KiB
XML
174 lines
6.0 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>
|
|
|
|
<groupId>com.github.games647</groupId>
|
|
<!--This have to be in lowercase because it's used by plugin.yml-->
|
|
<artifactId>fastlogin</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>FastLogin</name>
|
|
<version>0.2</version>
|
|
<inceptionYear>2015</inceptionYear>
|
|
<url>http://dev.bukkit.org/bukkit-plugins/fastlogin</url>
|
|
<description>
|
|
Automatically logins premium (paid accounts) player on a offline mode server
|
|
</description>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<!--Possibility to deploy directly to the plugins folder-->
|
|
<outputDir>${basedir}/target</outputDir>
|
|
</properties>
|
|
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/games647/FastLogin/issues</url>
|
|
</issueManagement>
|
|
|
|
<scm>
|
|
<url>https://github.com/games647/FastLogin</url>
|
|
<connection>scm:git:git://github.com/games647/FastLogin.git</connection>
|
|
<developerConnection>scm:git:ssh://git@github.com:games647/FastLogin.git</developerConnection>
|
|
</scm>
|
|
|
|
<build>
|
|
<defaultGoal>install</defaultGoal>
|
|
<!--Just use the project name to replace an old version of the plugin if the user does only copy-paste-->
|
|
<finalName>${project.name}</finalName>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.2</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<showWarnings>true</showWarnings>
|
|
<showDeprecation>true</showDeprecation>
|
|
<!--false means actual true http://jira.codehaus.org/browse/MCOMPILER-209-->
|
|
<useIncrementalCompilation>false</useIncrementalCompilation>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.6</version>
|
|
<configuration>
|
|
<outputDirectory>${outputDir}</outputDirectory>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<!--Replace variables-->
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
|
|
<!--Add the license to jar in order to see it in the final jar-->
|
|
<resource>
|
|
<directory>${basedir}</directory>
|
|
<includes>
|
|
<include>LICENSE</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<repositories>
|
|
<!--Bukkit-Server-API -->
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
|
|
<!--ProtocolLib-->
|
|
<repository>
|
|
<id>dmulloy2-repo</id>
|
|
<url>http://repo.dmulloy2.net/content/groups/public/</url>
|
|
</repository>
|
|
|
|
<!--Authme Reloaded-->
|
|
<repository>
|
|
<id>xephi-repo</id>
|
|
<url>http://ci.xephi.fr/plugin/repository/everything/</url>
|
|
</repository>
|
|
|
|
<!--xAuth-->
|
|
<repository>
|
|
<id>luricos.de-repo</id>
|
|
<url>http://repo.luricos.de/bukkit-plugins/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<!--Server API-->
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!--Library for listening and sending Minecraft packets-->
|
|
<dependency>
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
<artifactId>ProtocolLib</artifactId>
|
|
<version>3.6.5-SNAPSHOT</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!--Login Plugins-->
|
|
<dependency>
|
|
<groupId>fr.xephi</groupId>
|
|
<artifactId>authme</artifactId>
|
|
<version>5.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>de.luricos.bukkit</groupId>
|
|
<artifactId>xAuth</artifactId>
|
|
<version>2.6</version>
|
|
<!--These artifacts produce conflicts on downloading-->
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>net.gravitydevelopment.updater</groupId>
|
|
<artifactId>updater</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>net.ess3</groupId>
|
|
<artifactId>EssentialsGroupManager</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>de.st_ddt.crazy</groupId>
|
|
<artifactId>CrazyCore</artifactId>
|
|
<version>10.7.7</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/CrazyCore v10.7.7.jar</systemPath>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>de.st_ddt.crazy</groupId>
|
|
<artifactId>CrazyLogin</artifactId>
|
|
<version>7.23</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/CrazyLogin v7.23.2.jar</systemPath>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>me.lenis0012.ls</groupId>
|
|
<artifactId>LoginSecurity</artifactId>
|
|
<version>2.0.10</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/LoginSecurity v2.0.10.jar</systemPath>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|