mirror of
https://github.com/NLthijs48/AreaShop.git
synced 2024-11-22 10:15:54 +01:00
0aea914d20
- FastAsyncWorldEdit now supported on Spigot 1.13 - Improved support for the beta-01 versions of WorldGuard and WorldEdit - Resolves #436
102 lines
3.3 KiB
XML
102 lines
3.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>me.wiefferink</groupId>
|
|
<artifactId>areashop-parent</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>parent</version>
|
|
<name>AreaShop Parent</name>
|
|
<url>https://github.com/NLthijs48/AreaShop</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>GNU General Public License v3.0</name>
|
|
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<issueManagement>
|
|
<url>https://github.com/NLthijs48/AreaShop/issues</url>
|
|
<system>GitHub Issues</system>
|
|
</issueManagement>
|
|
|
|
<ciManagement>
|
|
<system>Jenkins</system>
|
|
<url>http://jenkins.wiefferink.me/job/AreaShop</url>
|
|
</ciManagement>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>vault-repo</id>
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
|
|
</repository>
|
|
<repository>
|
|
<id>wiefferink-repo</id>
|
|
<url>http://maven.wiefferink.me</url>
|
|
</repository>
|
|
<repository>
|
|
<id>bstats-repo</id>
|
|
<url>http://repo.bstats.org/content/repositories/releases/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
<build.number>#CUSTOM</build.number>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>areashop-interface</module>
|
|
<module>areashop-worldguard-5</module>
|
|
<module>areashop-worldguard-6</module>
|
|
<module>areashop-worldguard-6_1_3</module>
|
|
<module>areashop-worldguard-7_beta_1</module>
|
|
<module>areashop-worldguard-7_beta_2</module>
|
|
<module>areashop-worldedit-5</module>
|
|
<module>areashop-worldedit-6</module>
|
|
<module>areashop-worldedit-7_beta_1</module>
|
|
<module>areashop-worldedit-7_beta_4</module>
|
|
<module>areashop-fastasyncworldedit</module>
|
|
<module>AreaShop</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<version>2.17</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.puppycrawl.tools</groupId>
|
|
<artifactId>checkstyle</artifactId>
|
|
<version>7.6</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<executions>
|
|
<execution>
|
|
<id>validate</id>
|
|
<phase>validate</phase>
|
|
<configuration>
|
|
<configLocation>config/checkstyle.xml</configLocation>
|
|
<suppressionsLocation>config/checkstyle-suppressions.xml</suppressionsLocation>
|
|
<suppressionsFileExpression>config/checkstyle.suppressions.file</suppressionsFileExpression>
|
|
<encoding>UTF-8</encoding>
|
|
<consoleOutput>true</consoleOutput>
|
|
<failsOnError>true</failsOnError>
|
|
<violationSeverity>error</violationSeverity>
|
|
</configuration>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|