Final fix to the dependency resolution. Reverted minor changes to WorldEdit handling

This commit is contained in:
Wild1145 2017-01-07 23:59:53 +00:00
parent 7b183612e4
commit aaeee0d36e
2 changed files with 13 additions and 5 deletions

View file

@ -91,9 +91,9 @@
</dependency>
<dependency>
<groupId>com.github.TotalFreedom</groupId>
<artifactId>TF-WorldEdit</artifactId>
<version>63626093f3</version>
<groupId>com.github.TotalFreedom.TF-WorldEdit</groupId>
<artifactId>worldedit-bukkit</artifactId>
<version>6.1.0-TF</version>
</dependency>
<dependency>

View file

@ -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;