AreaShop/pom.xml
Thijs Wiefferink 796b95c9f9 Change to a Maven project
Changed project layout to Maven, all dependencies except Vault (does not
have a maven repo) are now included in the pom.xml and will be
automatically downloaded by Maven when building. The project setup uses
modules to support both WorldGuard and WorldEdit version with 1 jar file
instead of having 2 files as the last versions of AreaShop had.

Small bug with boolean settings in the config files has been fixed.
Problem with '/as stack' stacking in the Y direction instead of Z has
been fixed. Plus some refactoring and small changes.
2015-04-28 18:53:42 +02:00

40 lines
1.5 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>nl.evolutioncoding</groupId>
<artifactId>areashop-parent</artifactId>
<!-- Artifact ID doesn't matter for anything but the final product
At least, it doesn't matter externally to this setup -->
<packaging>pom</packaging>
<!-- Packaging? POM -->
<version>parent</version>
<!-- I keep my versions of the internal projects static, so I don't have to rename them all the time. -->
<name>AreaShop Parent</name>
<url>http://dev.bukkit.org/bukkit-plugins/regionbuyandrent/</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>WorldGuard 5</module>
<module>WorldGuard 6</module>
<module>WorldGuardInterface</module>
<module>WorldEdit 5</module>
<module>WorldEdit 6</module>
<module>WorldEditInterface</module>
<module>AreaShop</module>
</modules>
<!-- Define the repo here since multiple modules will be using it -->
<repositories>
<repository>
<id>bukkit-repo</id>
<url>http://repo.bukkit.org/content/groups/public</url>
</repository>
<repository>
<id>sk89q-repo-wg</id>
<url>http://maven.sk89q.com/artifactory/repo/</url>
</repository>
</repositories>
</project>