mirror of
https://github.com/NLthijs48/AreaShop.git
synced 2024-11-16 15:25:11 +01:00
6481da29e4
- Added a module for WorldGuard 6.1.3 to adapt to changes in flag related methods. - No compatibility with build 1672, since there is no dependency in the Maven repo of WorldGuard to target this (this is a dev build though so I don't expect people using it long-term) - Move properties for setting Java version to the parent pom file (other modules inherit them) - Move repositories to the parent pom file (other modules inherit them) - Fix AreaShop module not declaring its parent - Fixes #170
44 lines
1.4 KiB
XML
44 lines
1.4 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>
|
|
|
|
<parent>
|
|
<groupId>me.wiefferink</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>me.wiefferink</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> |