mirror of
https://github.com/NLthijs48/AreaShop.git
synced 2024-11-16 15:25:11 +01:00
b1dfe93088
- `/as import RegionForSale`, as requested in #98: - Imports all regions from RegionForSale - Converts almost all settings to their AreaShop equivalent - Handles parent regions - Add `rent.autoExtend` for use with rental regions to automatically extend the rent when the time is out, start of #29, still need the command - Vault compatible permissions plugin is required to let this work while the player is offline - All permissions, limits and the player balance are checked as during a normal rent - Add option to region groups to automatically add all regions of a certain world - BREAKING: Region events now use OfflinePlayer instead of Player - Automatically import existing region owners/members when adding a region to AreaShop There are still a couple of things missing in the import and it needs to be tested a lot.
38 lines
1.3 KiB
XML
38 lines
1.3 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-worldguard-5</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>AreaShop WorldGuard 5</name>
|
|
<version>WorldGuard-5</version>
|
|
|
|
<parent>
|
|
<groupId>me.wiefferink</groupId>
|
|
<artifactId>areashop-parent</artifactId>
|
|
<version>parent</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>${bukkit.version}</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>worldguard</artifactId>
|
|
<version>5.9.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
<type>jar</type>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|