Search Gradle plugins

Version 0.16.3

0.16.3

Created 23 March 2020.

Plugin for authoring Gradle guides

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.gradle.guide") version "0.16.3"
}

See also:

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