From aaeee0d36ecf77d29b477ecd4b564e0fdcd312db Mon Sep 17 00:00:00 2001 From: Wild1145 Date: Sat, 7 Jan 2017 23:59:53 +0000 Subject: [PATCH] Final fix to the dependency resolution. Reverted minor changes to WorldEdit handling --- pom.xml | 6 +++--- .../totalfreedommod/bridge/WorldEditListener.java | 12 ++++++++++-- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index a04f5692..2dc4528a 100644 --- a/pom.xml +++ b/pom.xml @@ -91,9 +91,9 @@ - com.github.TotalFreedom - TF-WorldEdit - 63626093f3 + com.github.TotalFreedom.TF-WorldEdit + worldedit-bukkit + 6.1.0-TF diff --git a/src/main/java/me/totalfreedom/totalfreedommod/bridge/WorldEditListener.java b/src/main/java/me/totalfreedom/totalfreedommod/bridge/WorldEditListener.java index ed6548a6..ecf398d3 100644 --- a/src/main/java/me/totalfreedom/totalfreedommod/bridge/WorldEditListener.java +++ b/src/main/java/me/totalfreedom/totalfreedommod/bridge/WorldEditListener.java @@ -2,8 +2,16 @@ package me.totalfreedom.totalfreedommod.bridge; import me.totalfreedom.totalfreedommod.TotalFreedomMod; import me.totalfreedom.totalfreedommod.util.FUtil; -import me.totalfreedom.worldedit.LimitChangedEvent; -import me.totalfreedom.worldedit.SelectionChangedEvent; +// These imports are not in the latest releases of WorldEdit, and the new versions of WorldEdit do not build properly. This will need to be reverted once the new WorldEdit builds are building properly. +// +//import me.totalfreedom.worldedit.LimitChangedEvent; +//import me.totalfreedom.worldedit.SelectionChangedEvent; +// +//The following two imports are a temporary measure as mentioned above. +// +import me.StevenLawson.worldedit.LimitChangedEvent; +import me.StevenLawson.worldedit.SelectionChangedEvent; +// import net.pravian.aero.component.PluginListener; import org.bukkit.ChatColor; import org.bukkit.entity.Player;