ch.tutteli.dokka
                  Owner:
                  
                    
                    Robert Stoll
                  
                
Applies the dokka plugin and provides a javadocJar Task.
https://github.com/robstoll/tutteli-gradle-plugins
Sources: https://github.com/robstoll/tutteli-gradle-plugins.git
Version 0.13.6
Created 28 September 2018.
                Applies JetBrain's dokka plugin, configures it by conventions and provides a javadocJar task.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("ch.tutteli.dokka") version "0.13.6"
}
              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("ch.tutteli.dokka:ch.tutteli.dokka.gradle.plugin:0.13.6") }It can then be applied in the precompiled script plugin:plugins { id("ch.tutteli.dokka") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ch.tutteli.dokka:ch.tutteli.dokka.gradle.plugin:0.13.6") } } apply(plugin = "ch.tutteli.dokka") - Applying plugins to all subprojects .