Search Gradle plugins

Version 1.1

Created 07 August 2019.

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.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects