Search Gradle plugins

Version 1.0.0-alpha.2

Created 23 September 2022.

A Gradle plugin that installs and runs Antora using a managed Node.js runtime.

Using the plugins DSL:

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

Using legacy plugin application:

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

apply(plugin = "org.antora")

Using the plugins DSL:

plugins {
  id "org.antora" version "1.0.0-alpha.2"
}

Using legacy plugin application:

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

apply plugin: "org.antora"

Learn how to apply plugins to subprojects