Search Gradle plugins

org.asciidoctor.convert

A Gradle plugin that uses Asciidoctor via JRuby to process AsciiDoc source files within the project

https://github.com/asciidoctor/asciidoctor-gradle-plugin

Using the plugins DSL:

plugins {
  id("org.asciidoctor.convert") version "1.5.12"
}

Using legacy plugin application:

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

apply(plugin = "org.asciidoctor.convert")

Using the plugins DSL:

plugins {
  id "org.asciidoctor.convert" version "1.5.12"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.asciidoctor:asciidoctor-gradle-plugin:1.5.12"
  }
}

apply plugin: "org.asciidoctor.convert"

Learn how to apply plugins to subprojects