Search Gradle plugins

Version 1.8 (latest)

Created 14 October 2023.

Plugin to add Table of Contents to Markdown documents and keeping them up to date

Using the plugins DSL:

plugins {
  id("com.github.blueboxware.tocme") version "1.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.blueboxware:tocme:1.8")
  }
}

apply(plugin = "com.github.blueboxware.tocme")

Using the plugins DSL:

plugins {
  id "com.github.blueboxware.tocme" version "1.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.blueboxware:tocme:1.8"
  }
}

apply plugin: "com.github.blueboxware.tocme"

Learn how to apply plugins to subprojects