mcMMO/core/build.gradle.kts

16 lines
400 B
Plaintext
Raw Normal View History

2019-02-10 09:34:08 +01:00
plugins {
java
}
2019-02-10 09:31:35 +01:00
repositories {
// Repo containing the Configurable library
maven("https://repo.spongepowered.org/maven")
2019-02-12 15:54:32 +01:00
// Flow Math
maven("https://oss.sonatype.org/content/groups/public/")
2019-02-10 09:31:35 +01:00
}
dependencies {
2019-02-12 15:54:32 +01:00
compile("com.flowpowered", "flow-math", "1.0.4-SNAPSHOT")
2019-02-10 09:35:25 +01:00
compile("org.spongepowered", "configurate-yaml", "3.6") // Configurable (config library from Sponge)
2019-02-10 09:31:35 +01:00
}