diff --git a/Developer-Documentation.md b/Developer-Documentation.md
index c2edb31..864e634 100644
--- a/Developer-Documentation.md
+++ b/Developer-Documentation.md
@@ -10,7 +10,7 @@
[Nukkit Maven](https://github.com/IntellectualSites/PlotSquared/wiki/Developer-Documentation#nukkit-maven)
[Nukkit Gradle](https://github.com/IntellectualSites/PlotSquared/wiki/Developer-Documentation#nukkit-gradle)
## Bukkit: Maven 1.8 - 1.12.2
-If you need to access the bukkit module of PlotSquared, you need to add `plotsquared-bukkitapi` as ``
+If you need to access the bukkit module of PlotSquared, you need to add `plotsquared-bukkitapi` as `` and declare it as non-transitive.
```xml
@@ -31,7 +31,7 @@ If you need to access the bukkit module of PlotSquared, you need to add `plotsqu
```
## Bukkit: Gradle 1.8 - 1.12.2
-If you need to access the bukkit module of PlotSquared, you need to add `plotsquared-bukkitapi` into the `dependencies` block
+If you need to access the bukkit module of PlotSquared, you need to add `plotsquared-bukkitapi` into the `dependencies` block and declare it as non-transitive.
```gradle
// PlotSquared legacy repository
repositories {
@@ -46,7 +46,7 @@ You can compile PlotSquared legacy with Gradle, which is included with this repo
$ `gradlew setupDecompWorkspace` - is only needed if you want to work with Forge
$ `gradlew build` OR `gradle :Bukkit:build`
## Bukkit: Maven 1.13+
-If you need to access the bukkit module of PlotSquared, you need to add `PlotSquared-BukkitAPI` as ``
+If you need to access the bukkit module of PlotSquared, you need to add `PlotSquared-BukkitAPI` as `` and declare it as non-transitive.
```xml
@@ -72,7 +72,7 @@ If you need to access the bukkit module of PlotSquared, you need to add `PlotSqu
```
## Bukkit: Gradle 1.13+
-If you need to access the bukkit module of PlotSquared, you need to add `PlotSquared-BukkitAPI` into the `dependencies` block
+If you need to access the bukkit module of PlotSquared, you need to add `PlotSquared-BukkitAPI` into the `dependencies` block and declare it as non-transitive.
```gradle
// PlotSquared repository
repositories {