com.ly.smart-doc
Owner: tongcheng1tech
smart-doc gradle plugin
https://github.com/TongchengOpenSource/smart-doc-gradle-plugin
Sources: https://github.com/TongchengOpenSource/smart-doc-gradle-plugin
Using the plugins DSL:
plugins {
id("com.ly.smart-doc") version "3.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.ly.smart-doc:smart-doc-gradle-plugin:3.0.8")
}
}
apply(plugin = "com.ly.smart-doc")
Using the plugins DSL:
plugins {
id "com.ly.smart-doc" version "3.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.ly.smart-doc:smart-doc-gradle-plugin:3.0.8"
}
}
apply plugin: "com.ly.smart-doc"