Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.shalousun.smart-doc") version "2.6.0-release"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.shalousun:smart-doc-gradle-plugin:2.6.0-release")
      }
    }
    
    apply(plugin = "com.github.shalousun.smart-doc")
  • Applying plugins to all subprojects .