Search Gradle plugins

Version 2.2.0-dirty

Created 10 November 2022.

Applies brightSPARK Labs standardisation to project documentation

Using the plugins DSL:

plugins {
  id("com.brightsparklabs.gradle.docs") version "2.2.0-dirty"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.brightsparklabs.gradle.docs" version "2.2.0-dirty"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects