Files
FastLogin/pom.xml

79 lines
2.7 KiB
XML
Raw Permalink Normal View History

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"
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-->
<artifactId>fastlogin</artifactId>
<packaging>pom</packaging>
2015-09-04 19:56:58 +02:00
<name>FastLogin</name>
<version>1.11-SNAPSHOT</version>
2017-10-07 19:19:45 +02:00
<url>https://www.spigotmc.org/resources/fastlogin.14153/</url>
2015-09-04 19:56:58 +02:00
<description>
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
<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>
<modules>
2016-05-26 11:03:56 +02:00
<module>core</module>
<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>
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
2018-04-02 14:43:43 +02:00
</snapshotRepository>
<repository>
<id>codemc-releases</id>
<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>
<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>