yakworks.groovydoc-merge
                  Owner:
                  
                    
                    9ci Bot
                  
                
Yakworks Groovydoc merges together all the groovydocs for shippable libs in a project
https://github.com/yakworks/gradle-plugins
Sources: https://github.com/yakworks/gradle-plugins.git
Version 2.6.1-SNAPSHOT
Created 24 October 2021.
                Yakworks Groovydoc merges together all the groovydocs for shippable libs in a project
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("yakworks.groovydoc-merge") version "2.6.1-SNAPSHOT"
}
              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("yakworks.groovydoc-merge:yakworks.groovydoc-merge.gradle.plugin:2.6.1-SNAPSHOT") }It can then be applied in the precompiled script plugin:plugins { id("yakworks.groovydoc-merge") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("yakworks.groovydoc-merge:yakworks.groovydoc-merge.gradle.plugin:2.6.1-SNAPSHOT") } } apply(plugin = "yakworks.groovydoc-merge") - Applying plugins to all subprojects .