搜索Gradle插件

版本 1.8 (最新)

1.8

创建于 2023年10月14日。

插件可用于向Markdown文档添加目录并保持其更新

使用插件DSL

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

使用旧版插件应用

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

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

使用插件DSL

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

使用旧版插件应用

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

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

了解如何将插件应用到子项目