Skip to content

v0.4.3

Latest
Compare
Choose a tag to compare
@Iltotore Iltotore released this 04 Feb 08:25
e9e281a

This is a small update including a new Spigot description option called apiVersionForMcVersion which allows you to use the same version for both dependencies and apiVersion:

ext {
  MC_VERSION = '1.19.3'
}

// ...

dependencies {
  compileOnly spigotApi(MC_VERSION)
}

spigot {
  desc {
    // ...
    apiVersionForMcVersion MC_VERSION
  }
}

Thanks to @PhoenixmitX for this feature.
Thanks to @Baaasty and @PhoenixmitX for fixing the getPaperGroup method, used for paperApi and waterfall dependencies.