io.github.jonathanxd.dokka-doc-io
                  Owner:
                  
                    
                    Jonathan H R Lopes
                  
                
Extension functions for Kotlin dokka to link with jitpack.io and javadoc.io
https://github.com/JonathanxD/dokka-doc-io
Sources: https://github.com/JonathanxD/dokka-doc-io
Version 1.2-jdk15
Created 21 May 2021.
                Extension functions for Kotlin dokka to link with jitpack.io and javadoc.io
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("io.github.jonathanxd.dokka-doc-io") version "1.2-jdk15"
}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("io.github.jonathanxd.dokka-doc-io:io.github.jonathanxd.dokka-doc-io.gradle.plugin:1.2-jdk15") }It can then be applied in the precompiled script plugin:plugins { id("io.github.jonathanxd.dokka-doc-io") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.jonathanxd.dokka-doc-io:io.github.jonathanxd.dokka-doc-io.gradle.plugin:1.2-jdk15") } } apply(plugin = "io.github.jonathanxd.dokka-doc-io")
- Applying plugins to all subprojects .