mirror of
https://github.com/TuxCoding/FastLogin.git
synced 2026-01-25 08:32:31 +01:00
88 lines
3.1 KiB
XML
88 lines
3.1 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>pom</packaging>
|
|
|
|
<name>FastLogin</name>
|
|
<version>1.7.1</version>
|
|
<inceptionYear>2015</inceptionYear>
|
|
<url>https://www.spigotmc.org/resources/fastlogin.14153/</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>
|
|
|
|
<modules>
|
|
<module>core</module>
|
|
<module>bukkit</module>
|
|
<module>bungee</module>
|
|
<module>universal</module>
|
|
</modules>
|
|
|
|
<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.5.1</version>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
<showWarnings>true</showWarnings>
|
|
<showDeprecation>true</showDeprecation>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.0.0</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>
|
|
<!--Parent folder-->
|
|
<directory>${basedir}/..</directory>
|
|
<includes>
|
|
<include>LICENSE</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
</project>
|