build.gradle.kts 820 B

1234567891011121314151617181920212223
  1. import Config.Libs.Bukkit.`1_8` as Bukkit
  2. plugins {
  3. java
  4. }
  5. /*
  6. Dependency inheritance is as follows
  7. - ":core", which provides
  8. configurate, tomcat jdbc/juli, and flowmath. It excludes sub
  9. dependencies like guava and apache commons lang.
  10. - ":bukkit", which provides nothing on it's own, except the
  11. core bukkit classes that can be built on 1.13.2 API (which may change).
  12. It also defines all subprojects to depend on ":core", and ":bukkit",
  13. and bstats-bukkit.
  14. */
  15. dependencies {
  16. compileOnly(Bukkit.api) // Bukkit API for 1.8.8 - Defined in <root>/buildSrc/src/main/java/Config.kt
  17. compileOnly(Bukkit.nms) // CraftBukkit-1.8.8-R0.3-SNAPSHOT - Defined in <root>/buildSrc/src/main/java/Config.kt
  18. compileOnly(Bukkit.wgLegacy) // Old worldguard - Defined in <root>/buildSrc/src/main/java/Config.kt
  19. }