2019-02-16 18:39:44 -08:00
|
|
|
import Config.Libs as Libs
|
2019-02-07 16:09:35 -08:00
|
|
|
|
|
|
|
plugins {
|
2019-02-16 18:39:44 -08:00
|
|
|
`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)
|
|
|
|
}
|
2019-02-16 18:58:54 -08:00
|
|
|
compile(Libs.flowmath)
|
2019-02-16 18:39:44 -08:00
|
|
|
compile(Libs.jdbc)
|
|
|
|
compile(Libs.juli)
|
|
|
|
testCompile(Libs.junitDep)
|
|
|
|
|
|
|
|
// Spigot for in-dev dependency
|
|
|
|
compileOnly(Libs.Bukkit.`1_13`.spigotApi) {
|
|
|
|
isTransitive = false
|
|
|
|
}
|
2019-02-07 16:09:35 -08:00
|
|
|
}
|