搜索 Gradle 插件

版本 3.0.7-release (最新)

3.0.7-release

创建于 2024 年 8 月 17 日。

smart-doc gradle 插件

使用 插件 DSL

plugins {
  id("com.ly.smart-doc") version "3.0.7-release"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.ly.smart-doc:smart-doc-gradle-plugin:3.0.7-release")
  }
}

apply(plugin = "com.ly.smart-doc")

使用 插件 DSL

plugins {
  id "com.ly.smart-doc" version "3.0.7-release"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.ly.smart-doc:smart-doc-gradle-plugin:3.0.7-release"
  }
}

apply plugin: "com.ly.smart-doc"

学习如何将插件应用到子项目中