搜索Gradle插件

io.github.gciatto.kt-mpp.documentation

Gradle的Kotlin多平台和多项目配置插件:文档生成器(目前为Dokka)

https://github.com/gciatto/kt-mpp

源代码: https://github.com/gciatto/kt-mpp.git

版本 4.1.4(最新版)

4.1.4

创建于2024年5月31日。

Gradle的Kotlin多平台和多项目配置插件:文档生成器(目前为Dokka)

使用 插件DSL

plugins {
  id("io.github.gciatto.kt-mpp.documentation") version "4.1.4"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.gciatto:kt-mpp:4.1.4")
  }
}

apply(plugin = "io.github.gciatto.kt-mpp.documentation")

使用 插件DSL

plugins {
  id "io.github.gciatto.kt-mpp.documentation" version "4.1.4"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.gciatto:kt-mpp:4.1.4"
  }
}

apply plugin: "io.github.gciatto.kt-mpp.documentation"

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