net.minecrell.plugin-yml.paper
Owner: Minecrell
Generate paper-plugin.yml for Paper plugins based on the Gradle project
https://github.com/Minecrell/plugin-yml
Sources: https://github.com/Minecrell/plugin-yml
Version 0.6.0 (latest)
Created 19 June 2023.
Generate paper-plugin.yml for Paper plugins based on the Gradle project
Add this plugin to your build using the plugins DSL:
plugins {
id("net.minecrell.plugin-yml.paper") version "0.6.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("net.minecrell.plugin-yml.paper:net.minecrell.plugin-yml.paper.gradle.plugin:0.6.0") }
It can then be applied in the precompiled script plugin:plugins { id("net.minecrell.plugin-yml.paper") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.minecrell.plugin-yml.paper:net.minecrell.plugin-yml.paper.gradle.plugin:0.6.0") } } apply(plugin = "net.minecrell.plugin-yml.paper")
- Applying plugins to all subprojects .