mirror of
https://github.com/NLthijs48/AreaShop.git
synced 2024-11-25 19:56:26 +01:00
4cda8a9292
- Setup modules to load different classes for different Bukkit/Spigot versions - Create BukkitHandler to get/set the sign facing and get the block it is attached to - Fix `/as addsign` to use new sign methods - Fix sign updates to use new sign methods - Implement full forwards and backwards compatibility of the saved sign material type - On Bukkit 1.12 and lower all special wood types are translated to the standard sign - On Bukkit 1.13 the internal sign name is translated (and special wood types to the standard one) - On Bukkit 1.14 the signs of 1.13- are translated to the OAK variants - Cleanup the .gitignore files inside of the module folders
34 lines
1.2 KiB
XML
34 lines
1.2 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-bukkit-1_12</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>AreaShop Bukkit 1.7.9 until 1.12</name>
|
|
<version>latest</version>
|
|
|
|
<parent>
|
|
<groupId>me.wiefferink</groupId>
|
|
<artifactId>areashop-parent</artifactId>
|
|
<version>parent</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>craftbukkit</artifactId>
|
|
<scope>system</scope>
|
|
<version>any</version>
|
|
<systemPath>${project.basedir}/../dependencies/craftbukkit-1.7.9-R0.2-SNAPSHOT.jar</systemPath>
|
|
<type>jar</type>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>me.wiefferink</groupId>
|
|
<artifactId>areashop-interface</artifactId>
|
|
<version>latest</version>
|
|
<type>jar</type>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|