Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("ch.tutteli.dokka") version "0.14.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ch.tutteli:tutteli-gradle-dokka:0.14.1")
      }
    }
    
    apply(plugin = "ch.tutteli.dokka")
  • Applying plugins to all subprojects .