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

Version 1.5.10

1.5.10

Created 11 February 2019.

No version description available.

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.asciidoctor:asciidoctor-gradle-plugin:1.5.10")
      }
    }
    
    apply(plugin = "org.asciidoctor.convert")
  • Applying plugins to all subprojects .