build.gradle.kts 386 B

123456789101112
  1. plugins {
  2. java
  3. // Apply the spongegradle plugin to generate the metadata file
  4. id("org.spongepowered.plugin") version "0.9.0" // supplies sponge repo and plugin metadata creation tasks
  5. }
  6. dependencies {
  7. compile("org.spongepowered", "spongeapi", "7.1.0") // SpongeAPI
  8. compile("org.bstats", "bstats-sponge", "1.4") // Sponge bstats
  9. }
  10. description = "mcMMO for Sponge"