mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-01-18 16:35:25 +01:00
a9e81602b4
Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
24 lines
496 B
Plaintext
24 lines
496 B
Plaintext
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.flowmath)
|
|
compile(Libs.jdbc)
|
|
compile(Libs.juli)
|
|
testCompile(Libs.junitDep)
|
|
|
|
// Spigot for in-dev dependency
|
|
compileOnly(Libs.Bukkit.`1_13`.spigotApi) {
|
|
isTransitive = false
|
|
}
|
|
}
|