mirror of
https://github.com/NLthijs48/AreaShop.git
synced 2024-11-22 18:26:08 +01:00
530c74ccd2
- Add WorldEdit and WorldGuard module that supports the new vector system - WorldGuard/WordEdit dependencies are in the repository itself to make builds more reliable - Change code that uses WorldEdit vectors to use Spigot vectors - Rename all modules to areashop-[worldguard|worldedit]-<version> - Change maven versions of internal modules to 'latest' to be less confusing
43 lines
1.5 KiB
XML
43 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-interface</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>AreaShop Interface</name>
|
|
<version>latest</version>
|
|
|
|
<parent>
|
|
<groupId>me.wiefferink</groupId>
|
|
<artifactId>areashop-parent</artifactId>
|
|
<version>parent</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<scope>system</scope>
|
|
<version>any</version>
|
|
<systemPath>${project.basedir}/../dependencies/bukkit-1.7.9-R0.2.jar</systemPath>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.sk89q</groupId>
|
|
<artifactId>worldedit</artifactId>
|
|
<scope>system</scope>
|
|
<version>any</version>
|
|
<systemPath>${project.basedir}/../dependencies/worldedit-6.0.0-SNAPSHOT.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q</groupId>
|
|
<artifactId>worldguard</artifactId>
|
|
<scope>system</scope>
|
|
<version>any</version>
|
|
<systemPath>${project.basedir}/../dependencies/worldguard-6.0.0-SNAPSHOT.jar</systemPath>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|