diff --git a/api/build.gradle b/api/build.gradle index 3eedbfff..2f8bcb0e 100644 --- a/api/build.gradle +++ b/api/build.gradle @@ -1,8 +1,6 @@ dependencies { compileOnly project(path: ':common') - implementation (project(path: ':bukkit')) { - exclude (group: 'net.craftersland.data', module: 'bridge') - } + implementation project(path: ':bukkit') compileOnly 'org.spigotmc:spigot-api:1.16.5-R0.1-SNAPSHOT' compileOnly 'org.jetbrains:annotations:23.0.0' diff --git a/plugin/build.gradle b/plugin/build.gradle index d30ceef4..32f4d6c4 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -4,9 +4,7 @@ plugins { } dependencies { - implementation (project(path: ':bukkit', configuration: 'shadow')) { - exclude(group: 'net.craftersland.data', module: 'bridge') - } + implementation project(path: ':bukkit', configuration: 'shadow') implementation project(path: ':api', configuration: 'shadow') implementation project(path: ':bungeecord', configuration: 'shadow') implementation project(path: ':velocity', configuration: 'shadow')