mirror of
https://github.com/NLthijs48/AreaShop.git
synced 2024-11-16 15:25:11 +01:00
0b96b9cb42
- Add Github update checker, closes #201, it is implemented to allow reuse by other plugins, it will probably move to a separate repository later - Switch to Java 8, if people did not update already they probably never will - Add used Bukkit version as property, use that in all pom files - Add Task class with methods to easily use BukkitRunnable (not all code is migrated to this pattern yet)
39 lines
1.3 KiB
XML
39 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-interface</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>AreaShop Interface</name>
|
|
<version>AreaShopInterface</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>
|
|
</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>
|