From 6c03eea9b183687f5259c21a6bd27cffebcc1656 Mon Sep 17 00:00:00 2001 From: wizjany Date: Mon, 7 Mar 2016 19:26:16 -0500 Subject: [PATCH] Force compilation on newer bukkit api. Since spigot like pulling the rug out from under us. Fixes WORLDEDIT-3400. --- worldedit-bukkit/build.gradle | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/worldedit-bukkit/build.gradle b/worldedit-bukkit/build.gradle index ed882a1c0..cc23519df 100644 --- a/worldedit-bukkit/build.gradle +++ b/worldedit-bukkit/build.gradle @@ -1,11 +1,14 @@ apply plugin: 'eclipse' apply plugin: 'idea' +repositories { + maven { url "https://hub.spigotmc.org/nexus/content/groups/public" } +} + dependencies { compile project(':worldedit-core') compile 'com.sk89q:dummypermscompat:1.8' - compile 'org.sk89q.bukkit:bukkit-classloader-check:1.7.9-R0.2' - compile 'org.bukkit:bukkit:1.7.9-R0.2' + compile 'org.bukkit:bukkit:1.8.8-R0.1-SNAPSHOT' // zzz testCompile 'org.mockito:mockito-core:1.9.0-rc1' }