net.minecrell.plugin-yml.bukkit
                  Owner:
                  
                    
                    Minecrell
                  
                
A Gradle plugin that generates plugin.yml for Bukkit/BungeeCord plugins based on the Gradle project
https://github.com/Minecrell/plugin-yml
Sources: https://github.com/Minecrell/plugin-yml
Version 0.2.1
Created 07 October 2017.
                A Gradle plugin that generates plugin.yml for Bukkit/BungeeCord plugins based on the Gradle project
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("net.minecrell.plugin-yml.bukkit") version "0.2.1"
}
              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.bukkit:net.minecrell.plugin-yml.bukkit.gradle.plugin:0.2.1") }It can then be applied in the precompiled script plugin:plugins { id("net.minecrell.plugin-yml.bukkit") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.minecrell.plugin-yml.bukkit:net.minecrell.plugin-yml.bukkit.gradle.plugin:0.2.1") } } apply(plugin = "net.minecrell.plugin-yml.bukkit") - Applying plugins to all subprojects .