BukkitGradle
BukkitGradle copied to clipboard
Gradle utilities for easier writing Bukkit plugins
Setting of JDK 1.8 should be removed. JDK should be set by developer using [JVM Toolchains](https://docs.gradle.org/current/userguide/toolchains.html) instead. https://github.com/EndlessCodeGroup/BukkitGradle/blob/8ab3db4a03b0985a7fdd83ed86f1c920b923081d/src/main/kotlin/BukkitGradlePlugin.kt#L39-L42 Causes #60
It will be more convenient to use name `plugin` for plugin.yml configuration. ```diff bukkit { - meta { + plugin { name = "MyPlugin" } } ```
Hello, I seem to be having an issue with having BukkitGradle pull in the 1.17 builds of Spigot/Paper: Currently, my plugin's `build.gradle` file looks something like this: ```gradle plugins {...
Hello again! I figured you might want this to be separate from the bug report that I had previously opened, for the sake of keeping changelogs a bit more organized...
Hello, can you please add MetaItems for soft-dependencies and dependencies? Thank you. To me, you just need to update PluginMeta.groovy
Would you be open to adding an "Alternatives" section in the README for this project? I have a [similar plugin](https://github.com/eth-p/gradle-bukkit) with slightly different goals than this one, and I think...
Hello, I built a framework that is spreading through the community pretty fast called [ACF](https://acf.emc.gs) ([Spigot Thread](https://acfspigot.emc.gs)), as well as other libraries such as [TaskChain](https://taskchain.emc.gs), [IDB](https://idb.emc.gs), and [Minecraft Timings](https://github.com/aikar/minecraft-timings). So...
There are four types of dependencies: - Server API (`spigot-api`, `paper-api`, `bukkit`) - `compileOnly` - Third-party plugins - `compileOnly`, should be listed in `depend`, `softdepend` or `loadbefore`, should be added...
It would be great to generate a snippet to migrate content of `plugin.yml` to a build script. It would be useful both, for new users who wants to migrate and...