2015-04-28 18:53:42 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2017-03-29 20:15:44 +02:00
|
|
|
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-5</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>AreaShop WorldGuard 5</name>
|
|
|
|
<version>WorldGuard-5</version>
|
2015-04-28 18:53:42 +02:00
|
|
|
|
2017-03-29 20:15:44 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>me.wiefferink</groupId>
|
|
|
|
<artifactId>areashop-parent</artifactId>
|
|
|
|
<version>parent</version>
|
|
|
|
</parent>
|
2015-04-28 18:53:42 +02:00
|
|
|
|
2017-03-29 20:15:44 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
2017-06-12 19:56:49 +02:00
|
|
|
<version>${bukkit.version}</version>
|
2017-03-29 20:15:44 +02:00
|
|
|
<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>worldguard</artifactId>
|
|
|
|
<version>5.9.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2017-10-20 13:40:53 +02:00
|
|
|
</project>
|