搜索 Gradle 插件

版本 0.0.6 (最新版本)

0.0.6

创建于 2018 年 3 月 9 日。

Docfx 插件

使用 插件 DSL

plugins {
  id("net.karlmartens.docfx") version "0.0.6"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.karlmartens.docfx:docfx-plugin:0.0.6")
  }
}

apply(plugin = "net.karlmartens.docfx")

使用 插件 DSL

plugins {
  id "net.karlmartens.docfx" version "0.0.6"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.karlmartens.docfx:docfx-plugin:0.0.6"
  }
}

apply plugin: "net.karlmartens.docfx"

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