2015-09-04 19:56:58 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2020-03-03 10:50:48 +01:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2015-09-04 19:56:58 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<groupId>com.github.games647</groupId>
|
|
|
|
|
<!--This have to be in lowercase because it's used by plugin.yml-->
|
2016-05-03 15:58:22 +02:00
|
|
|
<artifactId>fastlogin</artifactId>
|
2015-11-14 20:03:24 +01:00
|
|
|
<packaging>pom</packaging>
|
2015-09-04 19:56:58 +02:00
|
|
|
|
|
|
|
|
<name>FastLogin</name>
|
2018-03-31 10:38:39 +02:00
|
|
|
<version>1.11-SNAPSHOT</version>
|
2017-10-07 19:19:45 +02:00
|
|
|
|
2015-11-14 20:03:24 +01:00
|
|
|
<url>https://www.spigotmc.org/resources/fastlogin.14153/</url>
|
2015-09-04 19:56:58 +02:00
|
|
|
<description>
|
2018-03-31 10:38:39 +02:00
|
|
|
Automatically login premium (paid accounts) player on a offline mode server
|
2015-09-04 19:56:58 +02:00
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2017-09-12 17:05:18 +02:00
|
|
|
|
|
|
|
|
<!-- Set default for non-git clones -->
|
2017-02-14 14:01:57 +01:00
|
|
|
<git.commit.id>Unknown</git.commit.id>
|
2017-09-12 17:05:18 +02:00
|
|
|
|
2019-11-09 13:57:12 +01:00
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
2015-09-04 19:56:58 +02:00
|
|
|
</properties>
|
|
|
|
|
|
2015-11-14 20:03:24 +01:00
|
|
|
<modules>
|
2016-05-26 11:03:56 +02:00
|
|
|
<module>core</module>
|
2015-11-14 20:03:24 +01:00
|
|
|
<module>bukkit</module>
|
|
|
|
|
<module>bungee</module>
|
|
|
|
|
</modules>
|
|
|
|
|
|
2018-04-02 14:43:43 +02:00
|
|
|
<!--Deployment configuration for the Maven repository-->
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>codemc-snapshots</id>
|
2020-03-03 10:50:48 +01:00
|
|
|
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
|
2018-04-02 14:43:43 +02:00
|
|
|
</snapshotRepository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>codemc-releases</id>
|
2020-03-03 10:50:48 +01:00
|
|
|
<url>https://repo.codemc.io/repository/maven-releases/</url>
|
2018-04-02 14:43:43 +02:00
|
|
|
</repository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
2015-09-04 19:56:58 +02:00
|
|
|
<build>
|
|
|
|
|
<!--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>
|
2017-02-14 14:01:57 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>pl.project13.maven</groupId>
|
|
|
|
|
<artifactId>git-commit-id-plugin</artifactId>
|
2020-03-09 16:17:00 +00:00
|
|
|
<version>4.0.0</version>
|
2017-02-14 14:01:57 +01:00
|
|
|
<configuration>
|
|
|
|
|
<failOnNoGitDirectory>false</failOnNoGitDirectory>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>get-the-git-infos</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>revision</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2015-09-04 19:56:58 +02:00
|
|
|
</plugins>
|
|
|
|
|
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<!--Replace variables-->
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|