mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2026-02-17 17:32:36 +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>
23 lines
469 B
Kotlin
23 lines
469 B
Kotlin
import Config.Libs as Libs
|
|
|
|
plugins {
|
|
`java-library`
|
|
id("com.github.johnrengelman.shadow")
|
|
}
|
|
|
|
dependencies {
|
|
|
|
compile(Libs.configurate) {
|
|
exclude(Deps.Groups.guava, Deps.Modules.guava)
|
|
exclude(Deps.Groups.checker, Deps.Modules.checker)
|
|
}
|
|
compile(Libs.jdbc)
|
|
compile(Libs.juli)
|
|
testCompile(Libs.junitDep)
|
|
|
|
// Spigot for in-dev dependency
|
|
compileOnly(Libs.Bukkit.`1_13`.spigotApi) {
|
|
isTransitive = false
|
|
}
|
|
}
|