mirror of
https://github.com/NLthijs48/AreaShop.git
synced 2024-11-16 07:15:23 +01:00
0b96b9cb42
- Add Github update checker, closes #201, it is implemented to allow reuse by other plugins, it will probably move to a separate repository later - Switch to Java 8, if people did not update already they probably never will - Add used Bukkit version as property, use that in all pom files - Add Task class with methods to easily use BukkitRunnable (not all code is migrated to this pattern yet)
88 lines
2.9 KiB
XML
88 lines
2.9 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>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>sk89q-repo-wg</id>
|
|
<url>http://maven.sk89q.com/artifactory/repo/</url>
|
|
</repository>
|
|
<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>
|
|
<bukkit.version>1.8-R0.1-SNAPSHOT</bukkit.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>WorldGuard 5</module>
|
|
<module>WorldGuard 6</module>
|
|
<module>WorldGuard 6_1_3</module>
|
|
<module>Interfaces</module>
|
|
<module>WorldEdit 5</module>
|
|
<module>WorldEdit 6</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>
|