Minecraft 开发:在哪里可以找到较旧的 Bukkit API 文档?

Minecraft development : Where to find older Bukkit API documentation?

已经进入 Bukkit API 开发几个月了,大部分时间我使用 spigot 网站 (https://hub.spigotmc.org/javadocs/bukkit/) 检查 APIs,上个月1.11 发布时,文档也更新到 v1.11。

由于目前不想将代码更新到 1.11,我在哪里可以找到 Bukkit v1.10.2 的 API 文档?

1.10 版本可以使用 1.7.2 API 创建插件,1.11 版本也可以。

虽然文档有点不同,但您可以参考最新的 Spigot javadocs,因为没有任何变化。开发1.7.2插件时,可以使用Spigot 1.11文档,不会有任何问题


Latest Spigot Documentation

Bukkit 1.7.10 Documentation

虽然我不知道某个站点包含以前版本的文档,但 spigot 的 Maven 存储库确实具有您应该的每个版本的源代码和文档 jar能够附加到您的 IDE.

如果你想手动设置它(或者Maven拒绝工作),你可以手动找到jars here - first select your version, and then download the latest -javadoc.jar (which will be at the bottom of the page). You can unzip that jar (which contains HTML pages rather than source or classes) and then you'll have a copy of the javadocs from that version. In the case of 1.10.2, the jar you want is this one

您可以下载较旧的 CraftBukkit/Spigot 版本并让它们生成您自己的 HTML-javadocs 副本。