build.gradle.kts 400 B

123456789101112131415
  1. plugins {
  2. java
  3. }
  4. repositories {
  5. // Repo containing the Configurable library
  6. maven("https://repo.spongepowered.org/maven")
  7. // Flow Math
  8. maven("https://oss.sonatype.org/content/groups/public/")
  9. }
  10. dependencies {
  11. compile("com.flowpowered", "flow-math", "1.0.4-SNAPSHOT")
  12. compile("org.spongepowered", "configurate-yaml", "3.6") // Configurable (config library from Sponge)
  13. }