org.gradle.guide
Owner: Gradle
Plugin for authoring Gradle guides
Sources: https://github.com/gradle-guides/gradle-guides-plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("org.gradle.guide") version "0.17.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.gradle.guides:gradle-guides-plugin:0.17.0") } } apply(plugin = "org.gradle.guide")
- Applying plugins to all subprojects .