2018-08-05 00:34:50 +02:00
|
|
|
<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-worldguard-7</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>AreaShop WorldGuard 7</name>
|
|
|
|
<version>WorldGuard-7</version>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>me.wiefferink</groupId>
|
|
|
|
<artifactId>areashop-parent</artifactId>
|
|
|
|
<version>parent</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<version>1.13-R0.1-SNAPSHOT</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.wiefferink</groupId>
|
|
|
|
<artifactId>areashop-interface</artifactId>
|
|
|
|
<version>AreaShopInterface</version>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldedit</artifactId>
|
|
|
|
<scope>system</scope>
|
|
|
|
<version>any</version>
|
2018-10-20 14:54:52 +02:00
|
|
|
<systemPath>${project.basedir}/../dependencies/worldedit-bukkit-7.0.0-beta-01.jar</systemPath>
|
2018-08-05 00:34:50 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.wiefferink</groupId>
|
|
|
|
<artifactId>areashop-worldguard-6</artifactId>
|
|
|
|
<version>WorldGuard-6</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.wiefferink</groupId>
|
|
|
|
<artifactId>areashop-worldguard-6_1_3</artifactId>
|
|
|
|
<version>WorldGuard-6_1_3</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldguard</artifactId>
|
|
|
|
<scope>system</scope>
|
|
|
|
<version>any</version>
|
2018-10-20 14:54:52 +02:00
|
|
|
<systemPath>${project.basedir}/../dependencies/worldguard-legacy-7.0.0-beta01.jar</systemPath>
|
2018-08-05 00:34:50 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2018-10-20 14:54:52 +02:00
|
|
|
</project>
|