mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-02-23 07:11:27 +01:00
Added the shadow plugin integration with the entire project. Indvidual modules each have their designated dependencies and each will assign various dependencies based on constants now made through buildSrc. Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
13 lines
204 B
Plaintext
13 lines
204 B
Plaintext
import Config.Libs.Bukkit.`1_8` as Bukkit
|
|
|
|
plugins {
|
|
java
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(Bukkit.api) // Spigot API
|
|
compileOnly(Bukkit.wgLegacy) // Old worldguard
|
|
compileOnly(Bukkit.nms)
|
|
|
|
}
|