Search Gradle plugins

Version 0.5.0

Created 14 February 2021.

Applies brightSPARK Labs standardisation to project documentation

Using the plugins DSL:

plugins {
  id("com.brightsparklabs.gradle.docs") version "0.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.brightsparklabs:gradle-docs:0.5.0")
  }
}

apply(plugin = "com.brightsparklabs.gradle.docs")

Using the plugins DSL:

plugins {
  id "com.brightsparklabs.gradle.docs" version "0.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.brightsparklabs:gradle-docs:0.5.0"
  }
}

apply plugin: "com.brightsparklabs.gradle.docs"

Learn how to apply plugins to subprojects