mirror of
https://github.com/NLthijs48/AreaShop.git
synced 2024-11-16 23:35:13 +01:00
796b95c9f9
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.
48 lines
1.5 KiB
XML
48 lines
1.5 KiB
XML
<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>
|
|
<artifactId>areashop-worldedit-6</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>AreaShop WorldEdit 6</name>
|
|
<version>WorldEdit-6</version>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<parent>
|
|
<groupId>nl.evolutioncoding</groupId>
|
|
<artifactId>areashop-parent</artifactId>
|
|
<version>parent</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>1.7.9-R0.2</version>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>nl.evolutioncoding</groupId>
|
|
<artifactId>areashop-interface</artifactId>
|
|
<version>AreaShopInterface</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q</groupId>
|
|
<artifactId>worldedit</artifactId>
|
|
<version>6.0.0-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
<type>jar</type>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q</groupId>
|
|
<artifactId>worldguard</artifactId>
|
|
<version>6.0.0-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
<type>jar</type>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |