mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-01-19 00:45:27 +01:00
16 lines
400 B
Plaintext
16 lines
400 B
Plaintext
plugins {
|
|
java
|
|
}
|
|
|
|
repositories {
|
|
// Repo containing the Configurable library
|
|
maven("https://repo.spongepowered.org/maven")
|
|
// Flow Math
|
|
maven("https://oss.sonatype.org/content/groups/public/")
|
|
}
|
|
|
|
dependencies {
|
|
compile("com.flowpowered", "flow-math", "1.0.4-SNAPSHOT")
|
|
compile("org.spongepowered", "configurate-yaml", "3.6") // Configurable (config library from Sponge)
|
|
}
|