org.asciidoctor.convert
Owner: Andres Almiray
A Gradle plugin that uses Asciidoctor via JRuby to process AsciiDoc source files within the project
https://github.com/asciidoctor/asciidoctor-gradle-plugin
Version 2.0-alpha.5
2.0-alpha.5
Created 23 November 2018.
Compatibility AsciidoctorJ plugin for those upgrading from 1.5.x (If you need a production-ready version of the AsciidoctorJ plugin for Gradle use a 1.5.x release of 'org.asciidoctor.convert' instead)
Using the plugins DSL:
plugins {
id("org.asciidoctor.convert") version "2.0-alpha.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.asciidoctor:asciidoctor-gradle-jvm:2.0-alpha.5")
}
}
apply(plugin = "org.asciidoctor.convert")
Using the plugins DSL:
plugins {
id "org.asciidoctor.convert" version "2.0-alpha.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.asciidoctor:asciidoctor-gradle-jvm:2.0-alpha.5"
}
}
apply plugin: "org.asciidoctor.convert"