搜索Gradle插件

org.antora

所有者: Dan Allen

一个 Gradle 插件,它使用管理的 Node.js 运行环境安装和运行 Antora。

https://gitlab.com/antora/gradle-antora-plugin

源码:https://gitlab.com/antora/gradle-antora-plugin.git

版本 1.0.0 (最新版)

1.0.0

创建于 2023 年 1 月 27 日。

一个 Gradle 插件,它使用管理的 Node.js 运行环境安装和运行 Antora。

使用plugins DSL

plugins {
  id("org.antora") version "1.0.0"
}

使用老式插件应用

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

apply(plugin = "org.antora")

使用plugins DSL

plugins {
  id "org.antora" version "1.0.0"
}

使用老式插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.antora:gradle-antora-plugin:1.0.0"
  }
}

apply plugin: "org.antora"

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