Search Gradle plugins

Version 0.18.1-hotfix

0.18.1-hotfix

Created 14 May 2021.

Plugin for authoring Gradle documentation

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.gradle.documentation") version "0.18.1-hotfix"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.gradle.guides:gradle-guides-plugin:0.18.1-hotfix")
      }
    }
    
    apply(plugin = "org.gradle.documentation")
  • Applying plugins to all subprojects .