搜索 Gradle 插件

版本 0.3.10 (最新版)

0.3.10

创建于 2024 年 6 月 25 日。

文档/JavaDoc 处理器 Gradle 插件

使用 插件 DSL

plugins {
  id("nl.jolanrensen.docProcessor") version "0.3.10"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("nl.jolanrensen.docProcessor:doc-processor-gradle-plugin:0.3.10")
  }
}

apply(plugin = "nl.jolanrensen.docProcessor")

使用 插件 DSL

plugins {
  id "nl.jolanrensen.docProcessor" version "0.3.10"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "nl.jolanrensen.docProcessor:doc-processor-gradle-plugin:0.3.10"
  }
}

apply plugin: "nl.jolanrensen.docProcessor"

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