Owner:
Al Jeyapal
Applies brightSPARK Labs standardisation to project documentation
Version 2.2.0-dirty
Created 10 November 2022.
Applies brightSPARK Labs standardisation to project documentation
Add this plugin to your build using the plugins DSL:
plugins {
id("com.brightsparklabs.gradle.docs") version "2.2.0-dirty"
}
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("com.brightsparklabs.gradle.docs:com.brightsparklabs.gradle.docs.gradle.plugin:2.2.0-dirty") }It can then be applied in the precompiled script plugin:plugins { id("com.brightsparklabs.gradle.docs") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.brightsparklabs.gradle.docs:com.brightsparklabs.gradle.docs.gradle.plugin:2.2.0-dirty") } } apply(plugin = "com.brightsparklabs.gradle.docs") - Applying plugins to all subprojects .